Point.Elements (property, read)

Syntax Point.Elements
Description Integer. To return the number of elements configured for the point. For array points this will be greater than 1, for non-array points the value will be 1.
Example
Sub main()
??????Dim MyPoint as new Point
??????MyPoint.Id = "ARRAY_POINT"
??????for x = 0 to MyPoint.Elements - 1
??????????MyPoint.Value(x) = x
??????next x
??????MyPoint.Set
End sub