IsArray
From AutoIt Wiki
Checks if a variable is an array type. Adapted from AutoIt docs.
Contents |
Syntax
$chk = IsArray(var)
Parameters
| var | The variable/expression to check. |
Return Value
Success: Returns 1.
Failure: Returns 0 if parameter is not an array variable.
Example
$pos = WinGetPos("Untitled -")
If IsArray($pos) Then
MsgBox(0, "Window height", $pos[3])
EndIf