SystemImageListHelperSetIconDelegate Delegate |
Delegate for the method that is called when an icon is retrieved.
Namespace: Jam.ShellAssembly: ShellBrowser (in ShellBrowser.dll) Version: 7.2
Syntaxpublic delegate void SetIconDelegate(
int pNewIndex,
bool pIsOverlay,
int pOverlayIndex = -1
)
Public Delegate Sub SetIconDelegate (
pNewIndex As Integer,
pIsOverlay As Boolean,
Optional pOverlayIndex As Integer = -1
)
public delegate void SetIconDelegate(
int pNewIndex,
bool pIsOverlay,
int pOverlayIndex = -1
)
type SetIconDelegate =
delegate of
pNewIndex : int *
pIsOverlay : bool *
?pOverlayIndex : int
(* Defaults:
let _pOverlayIndex = defaultArg pOverlayIndex -1
*)
-> unitParameters
- pNewIndex Int32
- The index of the icon in the matching ImageList.
- pIsOverlay Boolean
- The icon that was retrieved is an overlay image.
- pOverlayIndex Int32 (Optional)
- (Optional) One-based index of the overlay. of pIsOverlay is true.
See Also