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)
ParameterTypeDescription
pageInt32Zero-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


PageSet(params int[])

Creates a page set based on exact page indices.

public PageSet(params int[] pages)
ParameterTypeDescription
pagesInt32[]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


PageSet(params PageRange[])

Creates a page set based on ranges.

public PageSet(params PageRange[] ranges)
ParameterTypeDescription
rangesPageRange[]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