Version

HeaderCellExported Event

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

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

PropertyDescription
BandHeaderContainer Returns an Infragistics.Documents.Reports.Report.Table.ITableCell which contains the band header being exported. If HeaderType is not a band header, this will be null.
ColumnHeaderContainer Returns an Infragistics.Documents.Reports.Report.Grid.IGridCell which contains the column header being exported. If HeaderType is not a column header, this will be null.
GridHeader Returns the Infragistics.Win.UltraWinGrid.HeaderBase being exported.
GroupHeaderContainer Returns an Infragistics.Documents.Reports.Report.Table.ITableCell which contains the group header being exported. If HeaderType is not a group header, this will be null.
HeaderType Indicates what type of header is being exported: a band header, group, or column header.
Remarks

HeaderCellExportedEventArgs.GridHeader returns the Infragistics.Win.UltraWinGrid.HeaderBase being exported.

HeaderType indicates what type of header is being exported: a band header, group, or column header.

HeaderCellExportedEventArgs.ColumnHeaderContainer, HeaderCellExportedEventArgs.GroupHeaderContainer, and HeaderCellExportedEventArgs.BandHeaderContainer return a report object which contains the header being exported. Only one of these three properties will contain an object, the other two will be null.

ColumnHeaderContainer returns an Infragistics.Documents.Reports.Report.Grid.IGridCell which contains the column header being exported. If HeaderType is not a column header, this will be null.

GroupHeaderContainer returns an Infragistics.Documents.Reports.Report.Table.ITableCell which contains the group header being exported. If HeaderType is not a group header, this will be null.

BandHeaderContainer returns an ITableCell which contains the band header being exported. If HeaderType is not a band header, this will be null.

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