Method | Description | |
---|---|---|
HiByte ( short Word ) : byte |
The return value is the high-order byte of the specified value.
|
|
HiDword ( long DWord ) : long |
The return value is the high-order double word of the specified value.
|
|
HiWord ( int DWord ) : int |
The return value is the high-order word of the specified value.
|
|
LoByte ( short Word ) : byte |
The return value is the low-order byte of the specified value.
|
|
LoDword ( long DWord ) : long |
The return value is the low-order word of the specified value.
|
|
LoWord ( int DWord ) : int |
The return value is the low-order word of the specified value.
|
|
MakeLong ( short Low, short High ) : int |
Make an integer putting Low in low 2-bytes and High in high 2-bytes.
|
|
MakeWord ( byte Low, byte High ) : short |
Make an short from 2-bytes.
|
public static MakeLong ( short Low, short High ) : int | ||
Low | short | |
High | short | |
return | int |
public static MakeWord ( byte Low, byte High ) : short | ||
Low | byte | |
High | byte | |
return | short |