ChartDirector 7.1 (C++ Edition)

MultiPagePDF.addPage2


Usage

void addPage(DrawArea *d);

Description

Adds a DrawArea object as a PDF page.

You can use DrawArea.setOutputOptions to configure the PDF page options, such as the page size, margins, etc.

MultiPagePDF will immediately generate the PDF page using the DrawArea object. You can immediately delete the DrawArea object after calling this method. That means you do not need to keep a lot of DrawArea objects in memory even if the PDF has a lot of pages.

Arguments

ArgumentDefaultDescription
d(Mandatory)The DrawArea object used to create the PDF page.

Return Value

None