IThumbnailCacheGetThumbnailByID Method

Gets a thumbnail from the thumbnail cache, given its ID.

Definition

Namespace: DevCase.Win32.Interfaces
Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[EditorBrowsableAttribute(EditorBrowsableState.Always)]
void GetThumbnailByID(
	ThumbnailId thumbnailId,
	uint requestedThumbSize,
	out ISharedBitmap refThumb,
	out ThumbnailCacheFlags refOutFlags
)

Parameters

thumbnailId  ThumbnailId

[Missing <param name="thumbnailId"/> documentation for "M:DevCase.Win32.Interfaces.IThumbnailCache.GetThumbnailByID(DevCase.Win32.Structures.ThumbnailId,System.UInt32,DevCase.Win32.Interfaces.ISharedBitmap@,DevCase.Win32.Enums.ThumbnailCacheFlags@)"]

requestedThumbSize  UInt32
The requested thumbnail size in pixels.

This value cannot be larger than 1024.

refThumb  ISharedBitmap
The address of a ISharedBitmap interface pointer that, when this method returns successfully, receives the object for accessing the requested thumbnail.

This parameter can be NULL.

refOutFlags  ThumbnailCacheFlags
A pointer to a value that, when this method returns successfully, receives a combination of the ThumbnailCacheFlags flags.

This value can be set to NULL if this information is not needed.

Remarks

See Also