ChartDirector 7.1 (.NET Edition)

MultiPagePDF.addPage2


Usage

[C#]public void addPage2(DrawArea d);
[VB]Public Sub addPage2(d As DrawArea)

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