C# Class ImageGlass.ImageListView.ImageListView.ImageListViewItemAdaptor

Represents the abstract case class for adaptors.
Inheritance: IDisposable
Show file Open project: d2phap/ImageGlass Class Usage Examples

Public Methods

Method Description
Dispose ( ) : void

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

GetDetails ( object key, bool useWIC ) : Utility.Tuple[]

Returns the details for the given item.

GetSourceImage ( object key ) : string

Returns the path to the source image for use in drag operations.

GetThumbnail ( object key, Size size, UseEmbeddedThumbnails useEmbeddedThumbnails, bool useExifOrientation, bool useWIC ) : Image

Returns the thumbnail image for the given item.

Method Details

Dispose() public abstract method

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public abstract Dispose ( ) : void
return void

GetDetails() public abstract method

Returns the details for the given item.
public abstract GetDetails ( object key, bool useWIC ) : Utility.Tuple[]
key object Item key.
useWIC bool true to use Windows Imaging Component; otherwise false.
return Utility.Tuple[]

GetSourceImage() public abstract method

Returns the path to the source image for use in drag operations.
public abstract GetSourceImage ( object key ) : string
key object Item key.
return string

GetThumbnail() public abstract method

Returns the thumbnail image for the given item.
public abstract GetThumbnail ( object key, Size size, UseEmbeddedThumbnails useEmbeddedThumbnails, bool useExifOrientation, bool useWIC ) : Image
key object Item key.
size System.Drawing.Size Requested image size.
useEmbeddedThumbnails UseEmbeddedThumbnails Embedded thumbnail usage.
useExifOrientation bool true to automatically rotate images based on Exif orientation; otherwise false.
useWIC bool true to use Windows Imaging Component; otherwise false.
return Image