Function Reference

BinaryLen

Returns the number of bytes in a binary variant.

BinaryLen ( binary )

 

Parameters

binary The binary data to evaluate.

 

Return Value

Returns the length of the binary data in bytes.

 

Remarks

None.

 

Related

Binary, BinaryMid

 

Example


; Create the binary data 0x10203040
$binary = Binary("0x10203040")
MsgBox(0, "Length in bytes:", BinaryLen($binary) )