Version

CellExported Event

Occurs after a grid cell is exported to a report.
Syntax
'Declaration
 
Public Event CellExported As EventHandler(Of CellExportedEventArgs)
public event EventHandler<CellExportedEventArgs> CellExported
Event Data

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

PropertyDescription
GridColumn Returns the Infragistics.Win.UltraWinGrid.UltraGridColumn which contains the cell being exported.
GridRow Returns the Infragistics.Win.UltraWinGrid.UltraGridRow containing the cell.
ReportCell Returns the Infragistics.Documents.Reports.Report.Grid.IGridCell into which the contents of the cell were exported.
Value Returns the grid cell value.
Remarks

CellExportedEventArgs.GridRow returns the Infragistics.Win.UltraWinGrid.UltraGridRow containing the cell.

CellExportedEventArgs.GridColumn returns the associated Infragistics.Win.UltraWinGrid.UltraGridColumn.

CellExportedEventArgs.ReportCell returns the Infragistics.Documents.Reports.Report.Grid.IGridCell into which the contents of the cell were exported.

This event fires for data cells only. It will not fire for header or summary cells. For header cells, use HeaderCellExported. For summary cells, use SummaryCellExported.

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