Binary
From AutoIt Wiki
Binary returns the binary variant of an expression. Adapted from AutoIt docs.
Contents |
Syntax
$var = Binary(expr)
Parameters
| expr | An expression to convert to binary data. |
Return Value
Returns a Binary variant.
Example
$var = Binary("0x00204060") ;$var is the binary type
msgbox(0, "IsBinary", IsBinary($var))