TBasedxReportLink.DrawPageFooter(Integer,TRect,TdxPageTitleParts,Boolean) Method
In This Article
Draws a page footer in a report.
#Declaration
Delphi
procedure DrawPageFooter(APageIndex: Integer; ARect: TRect; ATitleParts: TdxPageTitleParts; ADrawBackground: Boolean);
#Parameters
Name | Type |
---|---|
APage |
Integer |
ARect | TRect |
ATitle |
Tdx |
ADraw |
Boolean |
#Remarks
This method is intended to draw the page footer on a report’s surface. Call this method when custom painting a report.
The APageIndex parameter specifies the index of the page for which the footer is drawn.
The ARect parameter specifies the bound rectangle for drawing.
The ATitleParts parameter specifies a page region in which a footer is drawn. Possible values include:
Value | Description |
---|---|
tp |
Footer is drawn within the left footer region. |
tp |
Footer is drawn within the center of the page footer region. |
tp |
Footer is drawn within the right footer region. |
Set the ADrawBackground parameter to True to print footer background.
See Also