Version

CellExported Event (WebDocumentExporter)

Fired after the cell has finished exporting.
Syntax
'Declaration
 
Public Event CellExported As EventHandler(Of DocumentCellExportedEventArgs)
Event Data

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

PropertyDescription
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.
ReportCellElement The cell object in the report created to display the grid cell object.
Summary (Inherited from Infragistics.Web.UI.GridControls.BaseExportCellEventArgs)Returns the summary for the summary cell, if there is one.
Remarks

Use this event to customize the way the cell is exported. Extra elements that appear after the cell's text can be added to the generated cell using the CellExportedEventArgs.ReportCell property of the event argument. Style properties of the ReportCell like Alignment, Background and Borders can also be modified.

This event will only be fired for data cells in the grid. Handle the HeaderCellExported and FooterCellExported events for header and footer cells.

This event will not be fired if the CellExporting event was cancelled.

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