|
|
|
|
|
- Image and caption
- Manipulating the ListView controls via the properties
- Limit
DisplayedItemImage (Property) In french: RubriqueAffichéeImage
The DisplayedItemImage property is used to: - Get the item that corresponds to the image displayed in a ListView control.
- Change the item that corresponds to the image displayed in a ListView control.
Note: This item may come from a data file, a view or a query.
LSV_CustomerList.DisplayedItemImage = Customer.Photo
Syntax
Getting the item that corresponds to the image displayed Hide the details
<Displayed item> = <ListView control>.DisplayedItemImage
<Displayed item>: Character string Name of item corresponding to the image displayed in the ListView control. <ListView control>: Control name Name of ListView control to use.
Changing the item that corresponds to the image displayed Hide the details
<ListView control>.DisplayedItemImage = <New item>
<ListView control>: Control name Name of ListView control to use. <New item>: Character string Name of new item that will be used to display the image of ListView control. This item must belong to the data file the control is based on (returned or modified with the BrowsedFile property). Remarks Image and caption The DisplayedItemImage property is used to get and change only the item that corresponds to the images displayed in the control. To get and change the item that corresponds to the captions of the elements displayed in the control, use the DisplayedItem property. Manipulating the ListView controls via the properties - The records displayed in a ListView control based on a data file come from the data file or from the query specified by the BrowsedFile property.
- The sort direction is defined by the BrowsedItem property.
- The records can be filtered using the Filter property or the HFilter function.
Limit The DisplayedItemImage property applies only to ListView controls.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|