ExportAnalysisController.Exporting Event
Occurs when executing the ExportAnalysisController.ExportAction. Allows you to perform pre-export operations.
Namespace: DevExpress.ExpressApp.SystemModule
Assembly: DevExpress.ExpressApp.v24.2.dll
NuGet Package: DevExpress.ExpressApp
#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 |
---|---|
Export |
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 Handled |
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.