Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TBasedxReportLink.OnCustomDrawReportLinkFootnotes Event

In This Article

Enables you to custom paint footnotes.

#Declaration

Delphi
property OnCustomDrawReportLinkFootnotes: TdxCustomDrawReportLinkTitleEvent read; write;

#Remarks

Sender returns the report link that generates this event.

ACanvas determines the drawing surface. Refer to the global FSmoothlyStretchImages variable description to learn how to draw images with anti-aliasing.

ARect determines the footnote’s bounding rectangle.

ANom and ADenom determine the magnification and reduction levels.

ATextAlignX and ATextAlignY specify the display text’s horizontal and vertical alignment.

AColor specifies the display text color.

AFont determines the display text font.

ADone specifies whether default painting is required. Set ADone to True, to prevent default code execution.

If you need to customize the footnote’s height before the OnCustomDrawReportLinkFootnotes event handler is executed, handle the OnMeasureReportLinkFootnotes event.

See Also