Back to Devexpress

ReportDesignerBase.DocumentSaveFailed Event

wpf-devexpress-dot-xpf-dot-reports-dot-userdesigner-dot-reportdesignerbase-d7388ac7.md

latest4.2 KB
Original Source

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.v25.2.dll

NuGet Package : DevExpress.Wpf.Reporting

Declaration

csharp
public event EventHandler<ReportDesignerDocumentSaveFailedEventArgs> DocumentSaveFailed
vb
Public Event DocumentSaveFailed As EventHandler(Of ReportDesignerDocumentSaveFailedEventArgs)

Event Data

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

PropertyDescription
DocumentGets the report document currently being processed. Inherited from ReportDesignerDocumentOperationFailedEventArgs.
ErrorMessageGets or sets an error description displayed within an error message box. Inherited from OperationFailedEventArgs.
ExceptionGets an exception that raised the corresponding event. Inherited from OperationFailedEventArgs.
RethrowGets or sets a value that specifies whether to throw an exception on a failure. Inherited from OperationFailedEventArgs.
ShowErrorMessageGets or sets a value that specifies whether to display an error message box. Inherited from OperationFailedEventArgs.
ShowSaveFileDialogToSelectNewStorageGets or sets a value that specifies whether to invoke the Save File dialog to select another storage for saving a report.
StorageGets 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

DocumentSaved

Saved

SaveFailed

ReportDesignerBase Class

ReportDesignerBase Members

DevExpress.Xpf.Reports.UserDesigner Namespace