ShellBrowserGetThumbnailBitmap(Size, GetThumbnailCallback, Object) Method |
Asynchronously extracts the thumbnail image of the currently active shell object in the requested size.
Only for folders on Vista or later the size will always be quadratic with side length being the smallest of either p_Size.Width or p_Size.Height,
to avoid a stretching - use the synchronous call
GetThumbnailBitmap(Size) if you'd like to explicitly specify the dimensions
Namespace: Jam.ShellAssembly: ShellBrowser (in ShellBrowser.dll) Version: 7.2
Syntaxpublic void GetThumbnailBitmap(
Size p_Size,
GetThumbnailCallback p_CallBack,
Object p_State
)
Public Sub GetThumbnailBitmap (
p_Size As Size,
p_CallBack As GetThumbnailCallback,
p_State As Object
)
public:
void GetThumbnailBitmap(
Size p_Size,
GetThumbnailCallback^ p_CallBack,
Object^ p_State
)
member GetThumbnailBitmap :
p_Size : Size *
p_CallBack : GetThumbnailCallback *
p_State : Object -> unit
Parameters
- p_Size Size
- The size the returned thumbnail should have.
- p_CallBack GetThumbnailCallback
- The method to be called when this asynchronous operation is completed.
- p_State Object
- An optional, user-provided object that distinguishes this particular asynchronous request from other requests.
See Also