AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Propiedades WLanguage / Propiedades de ventanas, páginas y controles
  • 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
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
The DisplayedValue property returns the value currently displayed in the control of a window or page.
Ejemplo
// Find out the value displayed on the screen in the "Date" control
EDT_Date = 18031972
Trace(SAI_Date.DisplayValue) // Displays "03/18/1972"
Sintaxis
<Displayed value> = <Control used>DisplayedValue
<Displayed value>: Character string
Value currently displayed on the screen in the specified field.
<Control used>: Control name
Name of the control to be used.
Observaciones

Value displayed in an edit control

The DisplayedValue returns the formatted string with its input mask.
WINDEVWEBDEV - Código ServidorAndroidiPhone/iPadAjax

Value displayed in an HTML Display control

The DisplayedValue property returns the HTML code contained between the <BODY> and </BODY> tags.
AndroidiPhone/iPad Note: This property is not available on HTML Display controls. The result is an empty string.

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.
Note: using the gImage and gStoredValue functions
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 + ...
	 MemorizedValue("Customer.CustomerName" + i))
the following code is used to read back the original string:
COMBO_Combo1[1].InitialValue

Value displayed in a List Box control

The DisplayedValue property returns:
  • the formatted string displayed in the specified line if a line number is specified,
  • the formatted string displayed in the current line if no line 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.
Note: The DisplayedValue property does not return the value of invisible columns.
WINDEV

Value displayed in a ListView control

The DisplayedValue property returns:
  • the label of the item displayed in the specified line, if a line number is specified,
  • the label of the element displayed in the current line, if no line number is specified.

Limit

The DisplayedValue property applies only to:
  • Edit controls,
  • Combo Box controls,
  • List Box controls and rows in a List Box control,
  • Columns and rows in a Table control,
  • Rows in a Table control,
  • Static Text controls,
  • WINDEVWEBDEV - Código Servidor HTML fields.
  • WEBDEV - Código Servidor Image control fields.
  • WEBDEV - Código Servidor Clickable Image controls.
  • WEBDEV - Código Servidor Thumbnail controls.
Java In Java, the DisplayedValue property applies only to the following elements:
  • Edit control.
  • List Box control.
  • Combo Box control.
  • Table Column control.
WEBDEV - Código Navegador In browser code, the DisplayedValue property only applies to the following elements:
  • Edit control.
  • Formatted Display control.
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 10/05/2025

Señalar un error o enviar una sugerencia | Ayuda local