Checks if a variable or expression is a binary type.
IsBinary ( expression )
| expression | The variable or expression to check. |
| Success: | Returns 1. |
| Failure: | Returns 0 if expression is not binary type. |
Local $bBinary = Binary("0x00204060")
Local $sString = "0x00204060"
MsgBox(0, "IsBinary $bBinary", IsBinary($bBinary))
MsgBox(0, "IsBinary $sString", IsBinary($sString))