ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / HFSQL properties
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
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:
  • automatically filled with space characters (same operating mode as the one used in 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).
Example
// Characteristics of text items in the Orders data file
Orders.TextItemCompleted = True
...
// Validate the data file description
HDescribeFile(Orders)
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 to fill the text items with space characters,
  • False otherwise.
<Data file>: Character string
Name of the data file used. This name was 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 was defined by the File Description type.
<Filled items>: Boolean
  • True if the data file must be configured to fill the text items with space characters,
  • False otherwise.
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help