Version

ExportEnded Event

Occurs after grid export is finished.
Syntax
'Declaration
 
Public Event ExportEnded As ExportEndedEventHandler
public event ExportEndedEventHandler ExportEnded
Event Data

The event handler receives an argument of type ExportEndedEventArgs containing data related to this event. The following ExportEndedEventArgs properties provide information specific to this event.

PropertyDescription
Canceled True if exporting process was been canceled.
CurrentColumnIndex (Inherited from Infragistics.Win.UltraWinGrid.ExcelExport.ExcelExportEventArgs)Zero-based index of current exporting column in excel worksheet.
CurrentOutlineLevel (Inherited from Infragistics.Win.UltraWinGrid.ExcelExport.ExcelExportEventArgs)Current outline level used for grouping.
CurrentRowIndex (Inherited from Infragistics.Win.UltraWinGrid.ExcelExport.ExcelExportEventArgs)Zero-based index of current exporting row in excel worksheet.
CurrentWorksheet (Inherited from Infragistics.Win.UltraWinGrid.ExcelExport.ExcelExportEventArgs)Current exporting worksheet.
Workbook (Inherited from Infragistics.Win.UltraWinGrid.ExcelExport.ExcelExportEventArgs)Exporting workbook.
Remarks

The ExportEndedEventArgs.Canceled argument is True if the exporting process was cancelled.

The ExportEnded event is raised after the export process has been completed. If an overload of the Export method that accepts a filename was used, then the file would be available at this point since the file is saved after the ExportEnding event has been completed but before the ExportEnded.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also