ThumbnailUnavailableHandler Delegate |
A delegate to execute if the shell doesn't supply a real thumbnail of the element.
Namespace: Jam.ShellAssembly: ShellBrowser.Core (in ShellBrowser.Core.dll) Version: 7.2
Syntaxpublic delegate void ThumbnailUnavailableHandler(
string pPath,
Size pSize,
out Bitmap pBitmap
)
Public Delegate Sub ThumbnailUnavailableHandler (
pPath As String,
pSize As Size,
<OutAttribute> ByRef pBitmap As Bitmap
)
public delegate void ThumbnailUnavailableHandler(
String^ pPath,
Size pSize,
[OutAttribute] Bitmap^% pBitmap
)
type ThumbnailUnavailableHandler =
delegate of
pPath : string *
pSize : Size *
pBitmap : Bitmap byref -> unitParameters
- pPath String
- The path of the file to load a thumbnail for.
- pSize Size
- The requested size of the thumbnail.
- pBitmap Bitmap
- A Bitmap representing the the thumbnail of the file. Null if not supplied
See Also