FixHeaders: Boolean;
FixHeaders: boolean;
The FixHeaders property determines whether headers of express report table are fixed.
Available Values:
True. Headers of express report table are fixed.
False. Headers of express report table are not fixed.
Executing the example requires an express report with the EXPRESS_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.FixHeaders := False;
MObj.Save;
End Sub UserProc;
After executing this example the table headers are not fixed.
The requirements and result of Fore.NET Example execution are the same as 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.FixHeaders := False;
MObj.Save();
End Sub;
See also: