Skip to main content
A newer version of this page is available. .

XtraReport.SaveLayout(String, Boolean) Method

Saves the report’s definition (layout and configuration) to a file in the REPX format, with an exception thrown if an error occurs.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v18.2.dll

Declaration

public void SaveLayout(
    string fileName,
    bool throwOnError
)

Parameters

Name Type Description
fileName String

A String containing the full path (including the file name) specifying where the report’s definition will be saved.

throwOnError Boolean

true if a ArgumentException exception should be thrown on error; otherwise, false.

Remarks

A report definition contains all report settings, as well as settings of report controls. To load the report’s definition from a REPX file, use the XtraReport.LoadLayout and XtraReport.FromFile methods.

Alternatively, to save a report definition in an XML format, use the XtraReport.SaveLayoutToXml.

To learn more, see Storing Report Layouts.

See Also