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

ReportDesignerBase.DocumentSaveFailed Event

Occurs every time an attempt to save a report displayed in a designer document fails.

Namespace: DevExpress.Xpf.Reports.UserDesigner

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

Declaration

public event EventHandler<ReportDesignerDocumentSaveFailedEventArgs> DocumentSaveFailed

Event Data

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

Property Description
Document Gets the report document currently being processed. Inherited from ReportDesignerDocumentOperationFailedEventArgs.
ErrorMessage Gets or sets an error description displayed within an error message box. Inherited from OperationFailedEventArgs.
Exception Gets an exception that raised the corresponding event. Inherited from OperationFailedEventArgs.
Rethrow Gets or sets a value that specifies whether to throw an exception on a failure. Inherited from OperationFailedEventArgs.
ShowErrorMessage Gets or sets a value that specifies whether to display an error message box. Inherited from OperationFailedEventArgs.
ShowSaveFileDialogToSelectNewStorage Gets or sets a value that specifies whether to invoke the Save File dialog to select another storage for saving a report.
Storage Gets the storage that raised the event.

Remarks

Handle the DocumentSaveFailed event to respond to a failure to save a report to a storage.

The current designer document is specified by the ReportDesignerDocumentOperationFailedEventArgs.Document property of the event parameter. Use the Exception property to get the exception that caused the failure. Enable the ShowSaveFileDialogToSelectNewStorage property to invoke the Save File dialog to select another storage for saving the report. The event parameter’s properties also allow you to specify the error description, whether to show the error message, etc.

See Also