RowHeader property: GridColumn class
Description
Use this property to return a Boolean value indicating whether the grid column field is row a header.
This property is read-only.
Example
Local Grid &MYGRID;
Local GridColumn &MYGRIDTYPECOLUMN;
&MYGRID = GetGrid(Page.QE_GRID_API, "QE_ABSENCE_HIST");
&MYGRIDTYPECOLUMN = &MYGRID.GetColumn("QE_ABSENCE_TYPE");
If (&MYGRIDTYPECOLUMN.RowHeader) Then
WinMessage("QE_ABSENCE_TYPE is a row header.");
Else
WinMessage("QE_ABSENCE_TYPE is not a row header.");
End-If;