Version

ExportEnding Event

Occurs before the export process has ended, but before the Excel document is finalized.
Syntax
'Declaration
 
Public Event ExportEnding As ExportEndingEventHandler
public event ExportEndingEventHandler ExportEnding
Event Data

The event handler receives an argument of type ExportEndingEventArgs containing data related to this event. The following ExportEndingEventArgs 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 ExportEnding event is invoked when the export process has completed to give the developer one final opportunity to manipulate the Workbook being generated. This is particularly important when using an overload of the Export method that takes a filename as the file will be saved after the ExportEnding is complete but before the ExportEnded so any changes to the Workbook in the ExportEnded will not be reflected in the saved file. Also, since the file will not have been created until after the ExportEnding, the file cannot be accessed in this event; use the ExportEnded event, instead.

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