Click or drag to resize

ListView.LargeImageList Property

X#
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 
Request Example View Source

Property Value

Type: Usual
An 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.
X#
1LOCAL oImageList     AS ImageList
2oImageList := ImageList{2, Dimension{32, 32}}
3oImageList:Add(SmIconCheck{})
4oImageList:Add(SmIconCross{})
5SELF:oDClvPlayers:LargeImageList := oImageList
See Also