DisplayNumbers: Boolean;
DisplayNumbers: boolean;
The DisplayNumbers property determines whether to display rows and columns numeration in the express report table.
Available Values:
True. Rows and columns in the express report table are numerated.
False. Rows and columns in the express report table are not numerated.
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.
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: