RecordCount property: Row class
Description
This property returns the number of records in the row. It is defined by the "structure" of the scroll, so it is the same for all rows of the rowset.
This property might be used in conjunction with the GetRecord method to write code that examines all records in some way.
This property is read-only.
Example
For &I = 1 to &ROW.RecordCount
&REC = &ROW.GetRecord(&I);
/* do processing */
End-For;