[]
Creates a new Page and adds it to the end of the document.
public Page Add()
Public Function Add() As Page
Type | Description |
---|---|
Page | The newly created page. |
The size of the new page is determined by the PageSize property of the parent document.
You can also add pages to a GcPdfDocument by calling the NewPage() method.
Creates a new Page with the specified size and adds it to the end of the document.
public Page Add(SizeF pageSize)
Public Function Add(pageSize As SizeF) As Page
Type | Name | Description |
---|---|---|
SizeF | pageSize | The size of the new page, in points. |
Type | Description |
---|---|
Page | The newly created page. |
You can also add pages to a GcPdfDocument by calling the NewPage() method.
public Page Add(PaperKind paperKind)
Public Function Add(paperKind As PaperKind) As Page
Type | Name | Description |
---|---|---|
PaperKind | paperKind | The PaperKind determining the size of the new page. |
Type | Description |
---|---|
Page | The newly created page. |
You can also add pages to a GcPdfDocument by calling the NewPage() method.