PageSet

Overview

PageSet is a class in Aspose.Words FOSS for .NET. Inherits from: IEnumerable<int>.

Describes a random set of pages.

This class provides 4 methods for working with PageSet objects in .NET programs. Available methods include: GetEnumerator, PageSet. All public members are accessible to any .NET application after installing the Aspose.Words FOSS for .NET package. Properties: All, Even, Odd.

Properties

NameTypeAccessDescription
AllPageSetReadGets a set with all the pages of the document in their original order.
EvenPageSetReadGets a set with all the even pages of the document in their original order.
OddPageSetReadGets a set with all the odd pages of the document in their original order.

Methods

SignatureDescription
PageSet(page: int)Creates an one-page set based on exact page index.
PageSet(pages)Creates a page set based on exact page indices.
PageSet(ranges)Creates a page set based on ranges.
GetEnumerator()Calls GetEnumerator on this PageSet instance.

See Also