Skip to main content

ReportDesignerDocument.Closed Event

Occurs after a report document has been closed.

Namespace: DevExpress.Xpf.Reports.UserDesigner

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

NuGet Package: DevExpress.Wpf.Reporting

Declaration

public event EventHandler<ReportDesignerDocumentEventArgs> Closed

Event Data

The Closed event's data class is ReportDesignerDocumentEventArgs. The following properties provide information specific to this event:

Property Description
Document Gets the report document currently being processed.

Remarks

Handle the Closed event to respond to closing the document. This event fires after the document has been closed by an end-user at runtime or in code using the ReportDesignerDocument.Close methods. To cancel closing the document, handle the ReportDesignerDocument.Closing event.

See Also