Version

CellExported Event (WebExcelExporter)

Occurs when cell exporting is complete. This event is obsolete. Use GridFieldCaptionExported, GridRecordItemExported, SummaryCellExported instead.
Syntax
'Declaration
 
Public Event CellExported As ExcelCellExportedEventHandler
public event ExcelCellExportedEventHandler CellExported
Event Data

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

PropertyDescription
CurrentColumnIndex Index of the current exporting column in excel worksheet.
CurrentOutlineLevel Current outline level used for grouping.
CurrentRowIndex Index of the current exporting row in excel worksheet.
GridCell (Inherited from Infragistics.Web.UI.GridControls.BaseExportCellEventArgs)The grid cell object that is currently being exported.
IsFooterCell (Inherited from Infragistics.Web.UI.GridControls.BaseExportCellEventArgs)Returns true if this cell is in the grid footer.
IsHeaderCell (Inherited from Infragistics.Web.UI.GridControls.BaseExportCellEventArgs)Returns true if this cell is in the grid header.
IsSummaryCell (Inherited from Infragistics.Web.UI.GridControls.BaseExportCellEventArgs)Returns true if this cell holds a summary for the grid.
Summary (Inherited from Infragistics.Web.UI.GridControls.BaseExportCellEventArgs)Returns the summary for the summary cell, if there is one.
Worksheet Current exporting worksheet.
WorksheetCell Reference to the WorksheetCell that was just exported
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, 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