|
|
|
|
|
TextItemCompleted (Property) In french: RubriqueTexteComplétée
The TextItemCompleted property is used to manage text items in an HFSQL data file. The text items can be: - be completed automatically by spaces (identical to WINDEV 5.5),
- not filled with space characters.
You can: - Find out whether a data file is configured to populate the text items (data file defined in the data model editor or programmatically).
- Define the characteristics of the text items (only when the data file is described through programming).
Commande.RubriqueTexteComplétée = True
...
HDescribeFile(Commande)
Syntax
Finding out whether the text items will be filled with space characters Hide the details
<Filled items> = <Data file>.TextItemCompleted
<Filled items>: Boolean - True if the data file is configured so that text fields are completed with spaces,
- False otherwise.
<Data file>: Character string Name of the data file used. This name is defined in the data model editor or with the File Description type.
Defining the management mode of the text items (file created through programming) Hide the details
<Data file>.TextItemCompleted = <Filled items>
<Data file>: Character string Name of the data file used. This name is defined with the File Description type. <Filled items>: Boolean - True if the data file must be configured so that text fields are completed with spaces,
- False otherwise.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|