XmlDefinition: String;
The XmlDefinition property exports or imports formatting of an express report table to XML.
Sub UserProc;
Var
MB: IMetabase;
Expr: IEaxAnalyzer;
Grid: IEaxGrid;
Style: IEaxTableStyle;
s: String;
Begin
MB := MetabaseClass.Active;
Expr := MB.ItemById("EXPRESS_REPORT").BindAs IEaxAnalyzer;
Grid := Expr.Grid;
Style := Grid.Style;
s := Style.XmlDefinition;
End Sub UserProc;
After executing the example the s variable will contain express report table style in XML format. Express report identifier - EXPRESS_REPORT.
See also: