Method | Description | |
---|---|---|
HiByte ( this pWord ) : byte |
The return value is the high-order byte of the specified value.
|
|
HiDword ( this pDWord ) : int |
The return value is the high-order double word of the specified value.
|
|
HiWord ( this pDWord ) : short |
The return value is the high-order word of the specified value.
|
|
LoByte ( this pWord ) : byte |
The return value is the low-order byte of the specified value.
|
|
LoDword ( this pDWord ) : int |
The return value is the low-order word of the specified value.
|
|
LoWord ( this pDWord ) : short |
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 |