Table of Contents

Constructor PageRange

Namespace
DocWright.Core.Primitives
Assembly
DocWright.Core.dll

PageRange(int, int)

Initializes a range from the first to the last page, inclusive.

public PageRange(int firstPage, int lastPage)

Parameters

firstPage int

The 1-based first page.

lastPage int

The 1-based last page; must be at least firstPage.

Exceptions

ArgumentOutOfRangeException

firstPage is less than 1, or lastPage is less than firstPage.