IEaxTableStyle.XmlDefinition

Syntax

XmlDefinition: String;

Description

The XmlDefinition property exports or imports formatting of an express report table to XML.

Example

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:

IEaxTableStyle