PropertyInfoCollection property: CompIntfPropInfoCollection Object class
Description
This property returns another CompIntfPropInfoCollection collection if the object executing the property is a collection.
This property is read-only.
Example
&SCROLL1 = &MYCI.PropertyInfoCollection;
For &I = 1 to &SCROLL1.Count;
&PROPERTY = &SCROLL1.Item(&I);
If &PROPERTY.IsCollection Then
&SCROLL2 = &PROPERTY.PropertyInfoCollection;
/*do scroll 2 processing */
Else
/* do scroll 1 processing */
End-If;
End-For;