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

ExportAnalysisController.Exporting Event

Occurs when executing the ExportAnalysisController.ExportAction. Allows you to perform pre-export operations.

Namespace: DevExpress.ExpressApp.SystemModule

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public event EventHandler<CustomExportAnalysisEventArgs> Exporting

Event Data

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

Property Description
ExportType 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.
Stream Gets the stream to which the exported data should be stored.

Remarks

The Exporting event occurs before export, before triggering the ExportAnalysisController.CustomExport event. Handle the Executing event to implement pre-export operations. To get the target format in which the data is about to be exported, use the handler’s CustomExportAnalysisEventArgs.ExportType parameter.

See Also