Callback for the creation of the footer.
Syntax
C++
METHOD Footer : BOOL
VAR_INPUT
pFPDF : POINTER TO MnFPDF;
END_VAR
Parameters
|
Parameter |
Description |
|---|---|
|
pFPDF |
Pointer to an FPDF instance. |
|
Return value |
Status of the call. |
Example
C++
// Position at 1.5 cm from bottom
pFPDF^.SetY(-15);
// Arial italic 8
pFPDF^.SetFont('Arial','I',8);
// Page number
//pFPDF^.Cell(40,10,CONCAT('Page ', INT_TO_STRING(pFPDF^.PageNo())), '', 0, '', 0, '');
Requirements
Remarks