|
|
|
|
|
- List Box, ListView, Combo Box and Table controls based on a data file
- Equivalence
FillType (Property) In french: TypeRemplissage
The FillType property is used to determine the type of source used to populate Table, List Box, ListView, Combo Box and Looper controls. This property is read-only.
// Type of fill for a Table control ResFill = TABLE_Order.FillType
Syntax
<Type of fill> = <Control used>.FillType
<Type of fill>: Integer constant Type of fill for the control: | | filDirectAccessFile | Control with direct access to the data source. | filFileLoadedInMemory | Control with in-memory data source. | filMemory | Control populated programmatically (TableAdd or TableAddLine for a Table control). | filVariable | Control based on a WLanguage variable. |
<Control used>: Control name Name of the control used: Table, List Box, ListView, Combo Box or Looper control. Remarks List Box, ListView, Combo Box and Table controls based on a data file The following properties define the records that will be displayed. - BrowsedFile: Name of the base file.
- BrowsedItem: Name of the item used to loop through the data file and sort records.
- Filter: If this filter is not empty, only the records corresponding to the filter will be displayed.
- AutoBrowse: Indicates whether the iteration processes associated with the object will be used.
Equivalence This property replaces Memory and it allows you to get extensive information.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|