LinkBase.CreateReportHeaderArea Event
In This Article
Occurs when a report header section of the document is being generated.
Namespace: DevExpress.XtraPrinting
Assembly: DevExpress.Printing.v24.2.Core.dll
NuGet Package: DevExpress.Printing.Core
#Declaration
public event CreateAreaEventHandler CreateReportHeaderArea
#Event Data
The CreateReportHeaderArea event's data class is CreateAreaEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Graph |
Gets a Brick |
#Remarks
Handle the CreateReportHeaderArea event to customize the report header section of a document.
The document creation events occur in the following order:
- LinkBase.CreateMarginalHeaderArea
- LinkBase.CreateMarginalFooterArea
- LinkBase.CreateInnerPageHeaderArea
- LinkBase.CreateInnerPageFooterArea
- CreateReportHeaderArea
- LinkBase.CreateDetailHeaderArea
- LinkBase.CreateDetailArea
- LinkBase.CreateDetailFooterArea
- LinkBase.CreateReportFooterArea
Note
This order may be different in descendants of the Link
For more information on handling events, see Events and Delegates in MSDN.
See Also