GetThumbnailCallback Delegate |
Delegate for the callback function for retreiving a thumbnail using the asynchronous version of GetThumbnailBitmap().
Namespace:
Jam.Shell
Assembly:
ShellBrowser (in ShellBrowser.dll) Version: 7.1
Syntax public 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 -> unit
Parameters
- pImage
- Type: System.DrawingImage
The Bitmap containing the thumbnail image. - pBitmapSource
- Type: System.DrawingBitmap
The source that was used to create the Image. May be null. - pState
- Type: SystemObject
An optional, user-provided object that was supplied when calling the asynchronous version of GetThumbnailBitmap().
See Also