|
|
|
|
|
MakeInteger (Function) In french: ConstruitEntier Builds a 4-byte integer from two 2-byte integers. Value is int = 5000
Low is 2-byte int = LoWord(Value)
High is 2-byte int = HiWord(Value)
ValueBuilt is int = MakeInteger(High, Low)
Syntax
<Result> = MakeInteger(<High Byte> , <Low Byte>)
<Result>: Integer Integer value (4 bytes) built from the concatenation of <High Byte> and <Low Byte>. <High Byte>: 2-byte integer Value that will define the 2 high bytes of <Result>. <Low Byte>: 2-byte integer Value that will define the 2 low bytes of <Result>. Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|