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

ReportDesigner.OpenDocument(Byte[], Action<ReportDesignerDocument>) Method

Restores a report from the specified bytes and opens it in the End-User Report Designer.

Namespace: DevExpress.Xpf.Reports.UserDesigner

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

NuGet Package: DevExpress.Wpf.Reporting

Declaration

public ReportDesignerDocument OpenDocument(
    byte[] originalReport,
    Action<ReportDesignerDocument> beforeLoad = null
)

Parameters

Name Type Description
originalReport Byte[]

A System.Byte array containing the report.

Optional Parameters

Name Type Default Description
beforeLoad Action<ReportDesignerDocument> *null*

An action that will be invoked before the report is loaded.

Returns

Type Description
ReportDesignerDocument

A designer document that displays the restored report.

Remarks

The OpenDocument method creates a new instance of the ReportDesignerDocument class and loads a restored report to it.

See Also