Extended Tree ViewExpando Image List Property
This property is used to set or get the expando image list used to show the +/- images when the
ShowPlusMinus property is set to true.
Definition
Namespace: EWSoftware.ListControls
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2024.12.31.0
C#
public ImageList? ExpandoImageList { get; set; }VB
Public Property ExpandoImageList As ImageList
Get
SetC++
public:
property ImageList^ ExpandoImageList {
ImageList^ get ();
void set (ImageList^ value);
}F#
member ExpandoImageList : ImageList with get, setProperty Value
ImageListThe default is null to use the standard images. If set, the image list should contain images in the following order:
| Image Index | Description |
|---|---|
| 0 | Unthemed collapse image (required) |
| 1 | Unthemed expand image (required) |
| 2 | Themed collapse image (optional) |
| 3 | Themed expand image (optional) |
If you do not need separate themed and unthemed versions, you may omit the last two entries.