JamBaseShellListViewLargeCustomImages Property | 
Gets or sets an ImageList holding images that can be used as custom images in small viewstates.
Namespace: Jam.ShellAssembly: ShellBrowser (in ShellBrowser.dll) Version: 7.2
Syntaxpublic ImageList LargeCustomImages { get; set; }Public Property LargeCustomImages As ImageList
	Get
	Set
public:
property ImageList^ LargeCustomImages {
	ImageList^ get ();
	void set (ImageList^ value);
}member LargeCustomImages : ImageList with get, set
Property Value
ImageListAn imagelist holding small images (typically 16x16, larger images will be scaled).
Example
private void ShellListView1_AddItemCustomIcon(object sender, AddItemEventArgs e)
{
    if (System.IO.Path.GetExtension(e.Item.FullPath).ToUpperInvariant() == ".TXT")
    {
        e.Item.ImageIndex = shellListView1.ActiveImageList.Images.IndexOfKey("document_text.png");
    }
}
See Also