IEaxGrid.DisplayNumbers

Fore Syntax

DisplayNumbers: Boolean;

Fore.NET Syntax

DisplayNumbers: boolean;

Description

The DisplayNumbers property determines whether to display  rows and columns numeration  in the express report table.

Comments

Available Values:

Fore Example

Executing the example requires an express report with the EXPESS_REPORT identifier.

Add links to the Metabase and Express system assemblies.

Sub UserProc;
Var
    MB: IMetabase;
    MObj: IMetabaseObject;
    Expr: IEaxAnalyzer;
    Grid: IEaxGrid;
Begin
    MB := MetabaseClass.Active;
    MObj := MB.ItemById(
"EXPRESS_REPORT").Edit;
    Expr := MObj 
As IEaxAnalyzer;
    Grid := Expr.Grid;
    Grid.DisplayNumbers := 
True;
    MObj.Save;
End Sub UserProc;

After executing the example rows and columns numeration in the table is enabled.

Fore.NET Example

The requirements and result of the Fore.NET Example execution match with those in the Fore Example.

Imports Prognoz.Platform.Interop.Express;

Public Shared Sub Main(Params: StartParams);
Var
    MB: IMetabase;
    MObj: IMetabaseObject;
    Expr: IEaxAnalyzer;
    Grid: IEaxGrid;
Begin
    MB := Params.Metabase;
    MObj := MB.ItemById["EXPRESS_REPORT"].Edit();
    Expr := MObj As IEaxAnalyzer;
    Grid := Expr.Grid;
    Grid.DisplayNumbers := True;
    MObj.Save();
End Sub;

See also:

IEaxGrid