PageSet
PageSet constructor. Creates an onepage set based on exact page index.
PageSet(int)
Creates an one-page set based on exact page index.
public PageSet(int page)
| Parameter | Type | Description |
|---|---|---|
| page | Int32 | Zero-based index of the page. |
Remarks
If a page is encountered that is not in the document, an exception will be thrown during rendering. MaxValue means the last page in the document.
See Also
- class PageSet
- namespace Wordize.Saving
- assembly Wordize
PageSet(params int[])
Creates a page set based on exact page indices.
public PageSet(params int[] pages)
| Parameter | Type | Description |
|---|---|---|
| pages | Int32[] | Zero-based indices of pages. |
Remarks
If a page is encountered that is not in the document, an exception will be thrown during rendering. MaxValue means the last page in the document.
See Also
- class PageSet
- namespace Wordize.Saving
- assembly Wordize
PageSet(params PageRange[])
Creates a page set based on ranges.
public PageSet(params PageRange[] ranges)
| Parameter | Type | Description |
|---|---|---|
| ranges | PageRange[] | Array of page ranges. |
Remarks
If a range is encountered that starts after the last page in the document, an exception will be thrown during rendering. All ranges that end after the last page are truncated to fit in the document.
See Also
- class PageRange
- class PageSet
- namespace Wordize.Saving
- assembly Wordize