Skip to main content
All docs
V26.1
  • TdxCustomReportControl.Layout Property

    Provides access to the report template layout definition (in XML).

    Declaration

    property Layout: TStringList read;

    Property Value

    Type Description
    TStringList

    Stores an XML report template definition (REPX).

    Remarks

    TdxReport and TdxReportControl components generate report documents using an XML-based report definition (template) in the REPX format. A REPX report definition contains report controls, properties, and data bindings.

    Use the Layout property to load, save, and access the report template (in REPX).

    Available Options

    Call Layout.LoadFromFile/Layout.LoadFromStream and Layout.SaveToFile/Layout.SaveToStream procedures to import and export report templates in the REPX format.

    You can use Layout.Strings and Layout.Text properties to access and modify report layout content directly (if required).

    Refer to the TStringList class description for detailed information on all available options.

    See Also