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.v19.1.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.

See Also