Skip to main content

ReportDesignerBase.DocumentClosed Event

Occurs each time a report designer 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> DocumentClosed

Event Data

The DocumentClosed 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 DocumentClosed event to respond to closing report designer documents. This event fires after every time an individual document has been closed by an end-user at runtime or in code using the ReportDesignerDocument.Close method.

To cancel closing a specific document, handle the ReportDesignerBase.DocumentClosing event.

See Also