Express > Express Assembly Interfaces > IEaxHeader > IEaxHeader.Center
Center: IEaxHeaderPart;
The Center property returns central part of express report header.
Sub UserProc;
Var
MB: IMetabase;
Expr: IEaxAnalyzer;
Header: IEaxHeader;
HeaderPart: IEaxHeaderPart;
Begin
MB := MetabaseClass.Active;
Expr := MB.ItemById("EXPRESS_REPORT").Bind As IEaxAnalyzer;
Header := Expr.Header;
HeaderPart := Header.Center;
End Sub UserProc;
After executing the example the HeaderPart variable contains central part of express report header. Express report identifier - EXPRESS_REPORT.
See also: