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
  • Managing non-Latin character sets
  • Limits
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 Unicode property is used to:
  • Determine if the value of a control is a Unicode string.
  • Specify whether the value of a control is a Unicode string.
Note This property is particularly useful for managing fields linked to an HFSQL field in Unicode.
Ejemplo
// Checks whether the value of EDT_EmailMessage is in Unicode format
IF EDT_EmailMessage.Unicode = False THEN
	EDT_EmailMessage.Unicode = True
END
Sintaxis

Determining if the value of the control is in Unicode format Ocultar los detalles

<Result> = <Control used>.Unicode
<Result>: Boolean
  • True if the field value is in Unicode,
  • False otherwise.
<Control used>: Control name
Name of the control to be used.

Specifying whether the value of a control is in Unicode format Ocultar los detalles

<Control used>.Unicode = <Unicode/Ansi>
<Control used>: Control name
Name of the control to be used.
<Unicode/Ansi>: Boolean
  • True if the field value must be in Unicode,
  • False otherwise.
Observaciones

Managing non-Latin character sets

There is no need to use Unicode controls to manage the languages that use a non-latin character set. Simply use ChangeCharset.

Limits

The Unicode property is available for the following controls:
  • Edit control,
  • Combo Box control,
  • Static Text control,
  • List Box control,
  • Column of Table control,
  • ListView control.
  • WEBDEV - Código Servidor Dashboard control (property available in read mode only).
Versión mínima requerida
  • Versión 12
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