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

ExportController.Exported Event

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

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v18.2.dll

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.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the Exported event.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also