Version

SummaryRowExported Event

Occurs after summary record is exported to Excel.
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
AssociatedRecord Gets the record associated with the summaries (read-only)
CurrentColumnIndex (Inherited from Infragistics.Windows.DataPresenter.ExcelExporter.ExcelExportEventArgs)Zero-based index of current exporting column in excel worksheet.
CurrentOutlineLevel (Inherited from Infragistics.Windows.DataPresenter.ExcelExporter.ExcelExportEventArgs)Current outline level used for grouping.
CurrentRowIndex (Inherited from Infragistics.Windows.DataPresenter.ExcelExporter.ExcelExportEventArgs)Zero-based index of current exporting row in excel worksheet.
CurrentWorksheet (Inherited from Infragistics.Windows.DataPresenter.ExcelExporter.ExcelExportEventArgs)Current exporting worksheet.
Summaries Returns the collection of summary values that are being exported.
SummaryLevel Returns the 0-based index of the current summary record.
Workbook (Inherited from Infragistics.Windows.DataPresenter.ExcelExporter.ExcelExportEventArgs)Exporting workbook.
Remarks

The Summaries argument returns a reference to summary values.

The SummaryLevel argument returns a current summary level.

Additionaly this event has Workbook, CurrentWorksheet, CurrentRowIndex, CurrentColumnIndex, CurrentOutlineLevel arguments inherited from ExcelExportEventArgs.

This event is fired after Excel row with summary values for specific level is processed. Use it to apply any additional formatting to Excel row. If summaries span multiple Excel rows, this event is fired only for last row of summaries.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, 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