[]
Creates a new Page and adds it to the end of the document.
public Page Add()
| 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)
| 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)
| 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.