UtilWin32SetLoByte Method
Sets the low-order byte of a WORD value.
Namespace: DevCase.Win32Assembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public static ushort SetLoByte(
ushort word,
byte loByte
)
Public Shared Function SetLoByte (
word As UShort,
loByte As Byte
) As UShort
Dim word As UShort
Dim loByte As Byte
Dim returnValue As UShort
returnValue = UtilWin32.SetLoByte(word,
loByte)
public:
static unsigned short SetLoByte(
unsigned short word,
unsigned char loByte
)
static member SetLoByte :
word : uint16 *
loByte : byte -> uint16
No code example is currently available or this language may not be supported.
- word UInt16
-
The WORD value that contains the LOBYTE and the HIBYTE.
- loByte Byte
-
The new LOBYTE value.
UInt16
The resulting WORD value containing the HIBYTE and the new LOBYTE.
This is a code example.
No code example is currently available or this language may not be supported.
Dim value as UShort = SetLoByte(Short.MaxValue, Byte.MaxValue)
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.