Show contents 

Express > Express Assembly Interfaces > IEaxGrid > IEaxGrid.RowName

IEaxGrid.RowName

Syntax

RowName(Row: Integer): String;

Parameters

Row. Row number.

Description

The RowName property returns name of the header of an express report table row.

Example

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:

IEaxGrid