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