LinkBase.CreateMarginalFooterArea Event
Occurs when a marginal page footer section of the document is being generated.
Namespace: DevExpress.XtraPrinting
Assembly: DevExpress.Printing.v24.1.Core.dll
NuGet Package: DevExpress.Printing.Core
Declaration
Event Data
The CreateMarginalFooterArea event's data class is CreateAreaEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Graph | Gets a BrickGraphics object used to draw in the current report. |
Remarks
Handle the CreateMarginalFooterArea event to customize the marginal page footer section of a document.
The content specified via the LinkBase.CreateMarginalHeaderArea and CreateMarginalFooterArea methods is shifted by the values of the Top and Bottom margins (defined via the LinkBase.MinMargins property), respectively.
Document creation events occur in the following order (this order may be different in descendants of the LinkBase class):
- LinkBase.CreateMarginalHeaderArea
- CreateMarginalFooterArea
- LinkBase.CreateInnerPageHeaderArea
- LinkBase.CreateInnerPageFooterArea
- LinkBase.CreateReportHeaderArea
- LinkBase.CreateDetailHeaderArea
- LinkBase.CreateDetailArea
- LinkBase.CreateDetailFooterArea
- LinkBase.CreateReportFooterArea
For more information on handling events, see Events and Delegates in MSDN.