|
|
|
|
|
- Value displayed in an edit control
- Value displayed in an HTML Display control
- Value displayed in a Combo Box control
- Value displayed in a List Box control
- Value displayed in a column of a Table control
- Value displayed in a row of a Table control
- Value displayed in a column of a Table control
- Value displayed in a ListView control
- Limit
DisplayedValue (Property) In french: ValeurAffichée
The DisplayedValue property returns the value currently displayed in the control of a window or page.
// Find out the value displayed on the screen in the "Date" control EDT_Date = 18031972 Trace(EDT_Date.DisplayedValue) // Displays "18/03/1972"
Syntax
<Displayed value> = <Control used>.DisplayedValue
<Displayed value>: Character string Value currently displayed on the screen in the specified control. <Control used>: Control name Name of the control to be used. Remarks Value displayed in an edit control The DisplayedValue returns the formatted string with its input mask. Value displayed in a Combo Box control The DisplayedValue property returns the formatted string displayed: - in the edit control if the Combo Box control is editable,
- in the current row if the Combo Box control is not editable.
Remark: Use of gImage and gStoredValue To retrieve the content added with the gImage and gStoredValue functions, use the InitialValue property. For example, if the following code is used to add an element:
ListAdd(COMBO_Combo1, gImage(nImageNum,i) + "Customer.CustomerName" + i + ... Â StoredValue("Customer.CustomerName" + i))
the following code is used to read the initial string again:
COMBO_Combo1[1].InitialValue
Value displayed in a List Box control The DisplayedValue property returns: - the formatted string displayed in the specified row if a row number is specified,
- the formatted string displayed in the current row if no row number is specified.
Value displayed in a column of a Table control The DisplayedValue property returns the formatted string displayed in the cell corresponding to the specified column and the current row. Value displayed in a row of a Table control The DisplayedValue property returns the formatted string displayed in the cell corresponding to the specified column and the specified row. Value displayed in a column of a Table control The DisplayedValue property returns the values of each column of the specified row separated by TAB. Remark: The DisplayedValue property does not return the value of invisible columns.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|