Express > Express Assembly Interfaces > IEaxGrid > IEaxGrid.RowName
RowName(Row: Integer): String;
Row. Row number.
The RowName property returns name of the header of an express report table row.
Sub UserProc;
Var
MB: IMetabase;
Expr: IEaxAnalyzer;
Grid: IEaxGrid;
s: String;
Begin
MB := MetabaseClass.Active;
Expr := MB.ItemById("EXPRESS_REPORT").Bind As IEaxAnalyzer;
Grid := Expr.Grid;
s := Grid.RowName(Grid.TabSheet.RowsCount-1);
End Sub UserProc;
After executing the example the s variable contains name of the header of the last table row. Express report identifier - EXPRESS_REPORT.
See also: