PageRange Class
Definition
Represents a range of pages.
public class PageRange
Constructors
| Name | Description |
|---|---|
| PageRange | No summary available. |
PageRange Constructor
public PageRange(int startPage, int endPage)
Parameters
startPage int
endPage int
Methods
| Name | Description |
|---|---|
| Single | Creates a range for a single page. |
Single Method
Creates a range for a single page.
public Avalonia.Controls.Pdf.Services.PageRange Single(int page)
Parameters
page int
Returns
Properties
| Name | Description |
|---|---|
| All | Creates a range for all pages. |
| EndPage | Ending page (1-based, inclusive). |
| StartPage | Starting page (1-based). |
All Property
Creates a range for all pages.
public Avalonia.Controls.Pdf.Services.PageRange All { get; set; }
EndPage Property
Ending page (1-based, inclusive).
public int EndPage { get; set; }
StartPage Property
Starting page (1-based).
public int StartPage { get; set; }