Version

RowExported Event

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

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

PropertyDescription
ContainingTable The Infragistics.Documents.Reports.Report.Table.ITable in the report to which the new row will be added.
GridRow The grid row being exported.
ReportRow The Infragistics.Documents.Reports.Report.Table.ITable in the report which represents the row.
Remarks

The RowExportedEventArgs.GridRow property returns the grid row which was being exported. Note that this row exists in the cloned export layout. This row may not have the same state information (such as the Selected or Expanded state) as the actual grid row in the on-screen grid. To get the on-screen row associated with this row, use the Infragistics.Win.UltraWinGrid.UltraGrid.GetRowFromPrintRow(Infragistics.Win.UltraWinGrid.UltraGridRow) method.

RowExportedEventArgs.ContainingTable returns the Infragistics.Documents.Reports.Report.Table.ITable in the report to which the row was exported.

RowExportedEventArgs.ReportRow returns the ITable in the report which represents the exported row.

This event is fired after each row is exported. This includes the row, it's cells, it's RowPreviewArea, and may also include column header if using RowLayout mode with column headers that are displayed with the cells.

This event fires only for normal data rows or GroupBy rows. It does not fire for header or summary rows. For header rows, use HeaderRowExported. For summary rows, use SummaryRowExported.

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