ListView.LargeImageList Property | |
An image list containing large images to display for each item when the list view is displayed in icon view.
Namespace:
VO
Assembly:
VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL PROPERTY LargeImageList AS USUAL GET SET
public virtual Usual LargeImageList { get; set; }
Request Example
View SourceProperty Value
Type:
UsualAn image list containing large images to display for each item when the list view is displayed in icon view.
Examples
This example would typically occur in a PostInit() method of a window. In the example below, when the ListView is populated, each item will be assigned an image index, in this case depending upon whether the player in question is active or not.
1LOCAL oImageList AS ImageList
2oImageList := ImageList{2, Dimension{32, 32}}
3oImageList:Add(SmIconCheck{})
4oImageList:Add(SmIconCross{})
5SELF:oDClvPlayers:LargeImageList := oImageList
See Also