ParentRow property: Record class
Description
This property returns the row object for the row containing the record. If the record object was created with the CreateRecord built-in function, the value for ParentRow is null because the record object isn’t part of a row.
This property is read-only.
Example
&ROWOBJECT = &REC.ParentRow;
&TMP = "The row number of the parent row is " | &ROWOBJECT.RowNumber;
/* note that RowNumber is a property of the row class */
Related Topics