RowName(Row: Integer): String;
Row: Row number.
The RowName property returns name of the header of a row of the express report table index of which is passed in the Row parameter.
Sub Main;
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 Main;
After executing the example the s variable contains name of the header of the last table row. Express report identifier - EXPRESS_REPORT.
See also: