Breadcrumbs

Footer

Callback for the creation of the footer.

  Func_FbMnFPDF_ITF_Footer.bmp

C++
METHOD Footer : BOOL
VAR_INPUT
    pFPDF : POINTER TO MnFPDF;
END_VAR

Parameter

Description

pFPDF 

Pointer to an FPDF instance. 

Return value

Status of the call. 


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, '');