value.IsArray

Description

Checks if the value is an array.

Syntax

Function IsArray

Parameters

none

Return value

tells if it is an array or not

Example

Sample code

Dim val

UserVar.value = Array( "string1", "string2", "string3" ) 

If UserVar.IsArray() Then

   val = UserVar.GetAt( 0 )

Else val = Empty

End If 

See also

Platform Objects and Methods

value.GetAt

value.IsEmpty

Value Object