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 / Funciones WLanguage / Funciones estándar / Funciones de Windows / Funciones varias de WINDEV
  • String type and Unicode string
  • System integer
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Otros
Procedimientos almacenados
Identifies the type of an expression, a variable (during a call to a procedure for example) or a control.
Ejemplo
PROCEDURE MaProcédure(Paramètre)
TypeVar(Paramètre)
Sintaxis
<Result> = TypeVar(<Expression>)
<Result>: Integer
Identifies the type of variable or control value.
<Expression>: Character string
Name of WLanguage variable or control whose type you want to get.
Observaciones

String type and Unicode string

In Mobile, a Unicode string is considered as being a string:
MaChaîne is string UNICODE
TypeVar(MaChaîne) // renvoie wlChaîne
In WINDEV or WEBDEV, a Unicode string is considered as being a Unicode string:
MaChaîne is string UNICODE
TypeVar(MaChaîne) // renvoie wlChaîneUnicode

System integer

  • The system integer automatically adapts to the size supported by the compilation mode (4 bytes for a program compiled in 32-bit mode, 8 bytes for a program compiled in 64-bit mode).
  • For applications compiled in 32-bit mode, TypeVar returns 8 (wlInt).
  • For applications compiled in 64-bit mode, TypeVar returns 9 (wlInt_8).
Componente: wd290vm.dll
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: 06/03/2024

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