GetThumbnailCallback Delegate |
Delegate for the callback function for retreiving a thumbnail using the asynchronous version of GetThumbnailBitmap().
Namespace: Jam.ShellAssembly: ShellBrowser (in ShellBrowser.dll) Version: 7.2
Syntaxpublic delegate void GetThumbnailCallback(
Image pImage,
Bitmap pBitmapSource,
Object pState
)
Public Delegate Sub GetThumbnailCallback (
pImage As Image,
pBitmapSource As Bitmap,
pState As Object
)
public delegate void GetThumbnailCallback(
Image^ pImage,
Bitmap^ pBitmapSource,
Object^ pState
)
type GetThumbnailCallback =
delegate of
pImage : Image *
pBitmapSource : Bitmap *
pState : Object -> unitParameters
- pImage Image
- The Bitmap containing the thumbnail image.
- pBitmapSource Bitmap
- The source that was used to create the Image. May be null.
- pState Object
- An optional, user-provided object that was supplied when calling the asynchronous version of GetThumbnailBitmap().
See Also