Skip to main content
.NET 6.0+

ExportController.Exported Event

Occurs when executing the ExportController.ExportAction, when the export is completed.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v23.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public event EventHandler<CustomExportEventArgs> Exported

Event Data

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

Property Description
ExportOptions Specifies the export options to be applied when data is exported.
ExportTarget Gets the format in which the exported data should be stored.
Handled Gets or sets a value that indicates whether the event handler has completely handled the event or whether the system should continue its own processing. Inherited from HandledEventArgs.
Printable Specifies the IPrintable control which is used by a List Editor to export data.
Stream Gets the stream to which the exported data should be stored.

Remarks

The Exported event occurs after an export operation has been completed. The handler’s CustomExportEventArgs.ExportTarget and CustomExportEventArgs.Stream parameters specify the target export format and the exported data. Handle this event to perform custom post-export actions.

Refer to the How to: Customize the Export Action Behavior topic to see an example of handling this event.

See Also