Back to Devexpress

ReportDesignerDocument.Closing Event

wpf-devexpress-dot-xpf-dot-reports-dot-userdesigner-dot-reportdesignerdocument-532ebc05.md

latest3.2 KB
Original Source

ReportDesignerDocument.Closing Event

Occurs when a report document is about to be closed.

Namespace : DevExpress.Xpf.Reports.UserDesigner

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

NuGet Package : DevExpress.Wpf.Reporting

Declaration

csharp
public event EventHandler<ReportDesignerDocumentClosingEventArgs> Closing
vb
Public Event Closing As EventHandler(Of ReportDesignerDocumentClosingEventArgs)

Event Data

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

PropertyDescription
CancelGets or sets a value indicating whether the event should be canceled. Inherited from CancelEventArgs.
DocumentGets the report document currently being processed. Inherited from ReportDesignerDocumentCancelEventArgs.
ShowConfirmationMessageIfDocumentContainsUnsavedChangesSpecifies whether to show the confirmation message allowing users to save changes made in the report document.

Remarks

The Closing event allows you to perform different actions before a report document is closed.

The document currently being processed is specified by the ReportDesignerDocumentCancelEventArgs.Document property of the event parameter. To cancel closing the document, set the Cancel property to true. You can also use the ReportDesignerDocumentClosingEventArgs.ShowConfirmationMessageIfDocumentContainsUnsavedChanges property to specify whether to show the confirmation dialog for saving changes made in the report document.

To respond to closing the document, handle the ReportDesignerDocument.Closed event.

See Also

Closed

ReportDesignerDocument Class

ReportDesignerDocument Members

DevExpress.Xpf.Reports.UserDesigner Namespace