HiWord Function | |
Return the high-order (leftmost) word in a number.
Namespace:
XSharp.Core
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax FUNCTION HiWord(
dwValue AS DWORD
) AS WORD
public static ushort HiWord(
uint dwValue
)
Request Example
View SourceParameters
- dwValue
- Type: DWord
The number whose high-order word you want to get.
Return Value
Type:
WordRemarks
Related data can be stored in the high-order and low-order words of a variable.
Therefore, instead of creating and returning a 2-element array, it may be more efficient to return a double word whose 2 words contain separate information.
Also, many Windows API functions receive data in a LONGINT argument.
Usually the high-order and low-order words of this argument contain different information about a window and its messages. HiWord() can be used to extract the high-order word of this argument.
Examples
This example applies HiWord() and LoWord() to a binary number.
It also displays the high-order and low-order portions of the binary number as 2 separate numbers:
1? HiWord(0b00001000100000011111111100001111)
2
3? LoWord(0b00001000100000011111111100001111)
4
5
6? 0b0000100010000001
7
8? 0b1111111100001111
See Also