Version

SummaryCellExported Event

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

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

PropertyDescription
ReportCell Returns the Infragistics.Documents.Reports.Report.Grid.IGridCell into which the contents of the summary value were exported.
Summary Returns the Infragistics.Win.UltraWinGrid.SummaryValue being exported.
SummaryLevel Returns the level of the Summary. Summaries are exporting into multiple rows (levels). The summary level indicates on which level this summary is displayed.
Remarks

SummaryCellExportedEventArgs.Summary returns the Infragistics.Win.UltraWinGrid.SummaryValue being exported.

SummaryCellExportedEventArgs.SummaryLevel returns the level of the Summary. Summaries are exporting into multiple rows (levels). The summary level indicates on which level this summary is displayed.

SummaryCellExportedEventArgs.ReportCell returns the Infragistics.Documents.Reports.Report.Grid.IGridCell into which the contents of the summary value were exported.

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