|
|
|
|
|
ListViewMode (Property) In french: ModeListeImage
The ListViewMode property is used to: - Find out the display mode of a ListView control.
- Modify the display mode of a ListView control.
Remark: The display mode of a ListView control can also be modified in the editor, in the control description window ("Details" tab). Reminder: A ListView control can be displayed: - in standard mode: the control is displayed without images.
- in ListView mode: the control is displayed with images.
- in panorama mode: the control is displayed with the images as if they were presented on a curved wall. Only 20 images maximum can be displayed in this mode.
// Switch to standard mode LSV_ListView1.ListViewMode = lvmSimpleList
Find out the display mode of a ListView control Hide the details
<Result> = <ListView control>.ListViewMode
<Result>: Integer constant ListView control display mode:
| | lvmListView | ListView control displayed in ListView mode. | lvmPanorama | ListView control displayed in panorama mode. | lvmSimpleList | ListView control displayed in standard mode. |
<ListView control>: Control name Name of ListView control to use.
Modifying the display mode of a ListView control Hide the details
<ListView control>.ListViewMode = <New display mode>
<ListView control>: Control name Name of ListView control to use. <New display mode>: Integer constant ListView control display mode:
| | lvmListView | ListView control displayed in ListView mode. | lvmPanorama | ListView control displayed in panorama mode. | lvmSimpleList | ListView control displayed in standard mode. |
Remarks The ListViewMode property can only be used on ListView controls.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|