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