Version

CellExporting Event (WebWordExporter)

Fires before a cell is exported. This event can be cancelled to stop the cell from being exported.
Syntax
'Declaration
 
Public Event CellExporting As EventHandler(Of WordCellExportingEventArgs)
public event EventHandler<WordCellExportingEventArgs> CellExporting
Event Data

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

PropertyDescription
Cancel  
ExportValue The value that will be exported to the cell in the report.
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.
TableCell (Inherited from Infragistics.Web.UI.GridControls.WordCellExportedEventArgs)The table cell in the document that will have data exported to it
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