Skip to main content
A newer version of this page is available. .

LinkBase.CreateMarginalFooterArea Event

Occurs when a marginal page footer section of the document is being generated.

Namespace: DevExpress.XtraPrinting

Assembly: DevExpress.Printing.v19.2.Core.dll

Declaration

public event CreateAreaEventHandler CreateMarginalFooterArea

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):

For more information on handling events, see Events and Delegates in MSDN.

See Also