Version

SummaryRowExported Event

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

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

PropertyDescription
ContainingTable The ITable in the report to which the summary row was appended.
GridSummaryRow The UltraGridSummaryRow representing the summaries that were exported.
ReportSummaryFooterCell The ITableCell in the report which represents the summary footer (or null if no summary footer is displayed).
ReportSummaryRow The ITable in the report which represents the row.
Remarks

SummaryRowExportedEventArgs.GridSummaryRow returns the Infragistics.Win.UltraWinGrid.UltraGridSummaryRow that was exported.

SummaryRowExportedEventArgs.ContainingTable returns the ITable in the report to which the row was exported.

SummaryRowExportedEventArgs.ReportSummaryRow returns the ITable in the report which represents the exported summary row.

This event is fired after a summary row is exported to a report. A summary row includes the SummaryFooterCaption and all summary values.

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