Subscriber portal
Provides the array size for an extended data type.
public int arraySize()
In the following example, the arraySize method returns the array size for the XMLMapDimension extended data type.
DictType dicttype; int i; dicttype = new DictType(extendedTypeNum(XMLMapDimension)); for (i = 1; i < dicttype.arraySize(); i++) { print dicttype.label(i); pause; }