|
|
|
|
|
<Table>.InputInProgress (Function) In french: <Table>.SaisieEnCours Indicates whether a Table or TreeView Table control is currently in edit. Remark: If the user uses the Search icon in the column header, the Table or TreeView Table control is considered to be in edit mode.
// The user is not performing an input in the control IF TABLE_TABLE1.InputInProgress() = False THEN // Updates the Table control TABLE_TABLE1.Display() END
Syntax
<Result> = <Table control>.InputInProgress()
<Result>: Boolean - True if the control is currently in edit (which means if the user is typing information in the control),
- False otherwise.
<Table control>: Control name Name of the control to be used. This control can correspond to: - a Table control.
- a TreeView Table control.
The TreeView Table controls are not available.
Remarks Use conditions This function is available on: - a Table or TreeView Table control based on a data file.
- a Table or TreeView Table control populated programmatically.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|