Goto: 4C Home | 4C Docs | 4C External Libraries Home | FCPdf Home | FCPdf Function List PageAdd()

PageAdd()

Purpose:
FCPdf::PageAdd() adds a new page to the FCPdf document and returns an ident to the page.
Usage:
pageident = FCPdf::PageAdd(<docident>);
Arguments:

integer <docident> - A valid FCPdf document id.
Returns:
integer <pageident> - A FCPdf page identifier that can be used in FCPdf function calls that require a page identifier.
Where Used:
FCPdf::PageAdd() can be called anytime you have a valid document id and need to add a new page to the document.
Example:
Description:
FCPdf::PageAdd() adds a new page to the FCPdf document and returns an ident to the page.

Other pages in the document can still be accessed and modified as long as you refer to them by their <pageident>
Bugs/Features/Comments:
See Also: See Also
FCPdf Function List


Back to Top