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

XRDesignPanel.CreateSaveFileDialog(XtraReport, String) Method

Creates the SaveFile dialog window to save the current report’s configuration to a REPX file.

Namespace: DevExpress.XtraReports.UserDesigner

Assembly: DevExpress.XtraReports.v19.1.Extensions.dll

NuGet Package: DevExpress.Win.Reporting

Declaration

public static SaveFileDialog CreateSaveFileDialog(
    XtraReport report,
    string fileName
)

Parameters

Name Type Description
report XtraReport

An XtraReport object to be saved to a REPX file.

fileName String

A String representing the path (including the filename), specifying where to save the report.

Returns

Type Description
SaveFileDialog

A SaveFileDialog object.

Remarks

To save a report silently (without showing the dialog), use the XtraReport.SaveLayout method. To load a report definition from a REPX file use the XtraReport.LoadLayout method.

To learn more, refer to Storing Report Layouts.

See Also