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 Windows
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
Returns the two low bytes of an integer.
Ejemplo
Res is int
Res = 0x000A001F
Trace(HiWord(Res)) // Display 10 (corresponds to 0x000A)
Trace(LoWord(Res)) // Display 31 (corresponds to 0x001F)
WINDEVReportes y ConsultasCódigo de Usuario (UMC)
Res is int = CursorPos(cpClient)
IF Res <> -1 THEN
Message("Position X = " + LoWord(Res) + "Position Y = " + HiWord(Res))
END
Sintaxis
<Result> = LoWord(<Value> [, <Size>])
<Result>: 2-byte unsigned integer
The two low bytes.
<Value>: Integer
Value whose low bytes are sought.
If this value is a numeric other than an integer, this value is automatically converted into an integer.
An error will occur if this value is a character string.
<Size>: Optional integer
Size of the integer:
  • 1 for an integer on 1 byte,
  • 2 for an integer on 2 bytes,
  • 4 for an integer on 4 bytes.
WEBDEV - Código NavegadorAndroidWidget Android This parameter is not available.
Observaciones
  • The & operator is used to find out the address of a variable.
  • LoWord can be used to retrieve the low bytes of an integer returned by API or CallDLL32.
  • HiWord is used to retrieve the two high bytes of an integer.
  • To build a 4-byte integer from a 2-byte integer, use MakeInteger.
Clasificación Lógica de negocio / UI: Código neutro
Componente: wd300mat.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: 27/03/2025

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