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

ReportDesignerBase.DocumentSaved Event

Occurs every time a report displayed in a designer document has been saved.

Namespace: DevExpress.Xpf.Reports.UserDesigner

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

NuGet Package: DevExpress.Wpf.Reporting

Declaration

public event EventHandler<ReportDesignerDocumentEventArgs> DocumentSaved

Event Data

The DocumentSaved 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 DocumentSaved event to respond to saving a report to a storage. The current designer document is specified by the ReportDesignerDocumentEventArgs.Document property of the event parameter.

If the attempt to save a report fails, the ReportDesignerBase.DocumentSaveFailed event is raised.

See Also