10.16.2 AsBinString
AsBinString is used to create a binary string out of an integer value.
This intrinsic can be used as a first step into creating a hexadecimal representation of an integer.
Input Parameters
None
Example
#STD_INT := 15
#STD_BIN := #STD_INT.AsBinString
#STD_TEXT := #STD_BIN.AsHexString
* #STD_TEXT will contain 0F000000 on on intel-based computers