Version

HeaderRowExported Event

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

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

PropertyDescription
Band The Infragistics.Win.UltraWinGrid.UltraGridBand whose headers are being exported.
FixedHeaderContainer Returns an INode into which the header will be exported.
HeaderContainer Returns an ITableHeader into which the header will be exported.
IsFixedHeader Returns whether the header being exported is a fixed header.
ReportHeaderRow Returns an ITable representing the header in the report.
Remarks

HeaderRowExportedEventArgs.Band returns the Infragistics.Win.UltraWinGrid.UltraGridBand associated with the headers that were exported.

IsFixedHeader returns a boolean indicating whether this set of headers is a fixed header or not. A fixed header will repeat at the top of every page of the report. Other headers will appear at the top of a particulr island of data and repeat on a page break.

FixedHeaderContainer returns a the report object which contains the set of headers if the headers are fixed. If IsFixedHeader is false, this will return null.

HeaderContainer returns a report object which contains the headers if they are not fixed. If IsFixedHeader is True, this will return null.

HeaderRowExportedEventArgs.ReportHeaderRow returns the ITable in the report which represents the exported header row.

This event is fired after a set of headers is exported to the report. The header includes the band header (if any), the group headers (if groups and levels are used), and the column headers.

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