IPdfPage Interface
Definition
Represents a single PDF page.
public interface IPdfPage
Methods
| Name | Description |
|---|---|
| GetLinks | Gets links on this page. |
GetLinks Method
Gets links on this page.
public System.Collections.Generic.IReadOnlyList<Avalonia.Controls.Pdf.Core.PdfLink> GetLinks()
Returns
System.Collections.Generic.IReadOnlyList<Avalonia.Controls.Pdf.Core.PdfLink>
Properties
| Name | Description |
|---|---|
| Height | Gets the page height in points. |
| Index | Gets the page index (0-based). |
| Label | Gets the page label (e.g., "i", "ii", "1", "2"). |
| Rotation | Gets the page rotation in degrees (0, 90, 180, 270). |
| Width | Gets the page width in points (1/72 inch). |
Height Property
Gets the page height in points.
public double Height { get; set; }
Index Property
Gets the page index (0-based).
public int Index { get; set; }
Label Property
Gets the page label (e.g., "i", "ii", "1", "2").
public string Label { get; set; }
Rotation Property
Gets the page rotation in degrees (0, 90, 180, 270).
public int Rotation { get; set; }
Width Property
Gets the page width in points (1/72 inch).
public double Width { get; set; }