IsArray Function [Runtime]/text/sbasic/shared/03102200.xhpSun Microsystems, Inc.converted from old format - fpeIsArray functionIsArray Function [Runtime]Determines if a variable is a data field in an array.Syntax:IsArray (Var)Return value:BoolParameters:Var: Any variable that you want to test if it is declared as an array. If the variable is an array, then the function returns True, otherwise False is returned.Example:Sub ExampleIsArrayDim sDatf(10) as Stringprint isarray(sdatf())end Sub