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

IReportStorage.Load(String, IReportSerializer) Method

Loads a report with the specified ID in the designer.

Namespace: DevExpress.Xpf.Reports.UserDesigner

Assembly: DevExpress.Xpf.ReportDesigner.v17.2.dll

Declaration

XtraReport Load(
    string reportID,
    IReportSerializer designerReportSerializer
)

Parameters

Name Type Description
reportID String

A String value, specifying the report ID.

designerReportSerializer IReportSerializer

An object implementing the IReportSerializer interface.

Returns

Type Description
XtraReport

An XtraReport object.

Remarks

This method passes the report ID that has been selected using the IReportStorage.Open method and expects the actual report instance to be loaded and returned. You can use the IReportSerializer functionality to save or load a given report from a stream.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Load(String, IReportSerializer) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also