Class ThumbnailCachedEventArgs
Represents the event arguments for the thumbnail cached event.
Inheritance
System.Object
System.EventArgs
ThumbnailCachedEventArgs
Inherited Members
System.EventArgs.Empty
Namespace: Manina.Windows.Forms
Assembly: ImageListView.dll
Syntax
[Serializable]
[ComVisible(true)]
public class ThumbnailCachedEventArgs : EventArgs
Constructors
| Improve this Doc View SourceThumbnailCachedEventArgs(ImageListViewItem, Image, Size, Boolean)
Initializes a new instance of the ThumbnailCachedEventArgs class.
Declaration
public ThumbnailCachedEventArgs(ImageListViewItem item, Image thumbnail, Size size, bool thumbnailImage)
Parameters
Type | Name | Description |
---|---|---|
ImageListViewItem | item | The item that is the target of this event. |
System.Drawing.Image | thumbnail | The cached thumbnail image. |
System.Drawing.Size | size | The size of the thumbnail request. |
System.Boolean | thumbnailImage | true if the cached image is a thumbnail image; otherwise false if the image is a large image for gallery or pane views. |
Properties
| Improve this Doc View SourceIsThumbnail
Gets whether the cached image is a thumbnail image or a large image for gallery or pane views.
Declaration
public bool IsThumbnail { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
Item
Gets the ImageListViewItem that is the target of the event.
Declaration
public ImageListViewItem Item { get; }
Property Value
Type | Description |
---|---|
ImageListViewItem |
Size
Gets the size of the thumbnail request.
Declaration
public Size Size { get; }
Property Value
Type | Description |
---|---|
System.Drawing.Size |
Thumbnail
Gets the cached thumbnail image.
Declaration
public Image Thumbnail { get; }
Property Value
Type | Description |
---|---|
System.Drawing.Image |