PdfRect Struct
Definition
A rectangle in PDF user space. Coordinates are in points (1/72 inch) with the origin at the page's bottom-left corner; Y increases upward (PDF convention, not screen convention).
public struct PdfRect
Constructors
| Name | Description |
|---|---|
| PdfRect | A rectangle in PDF user space. Coordinates are in points (1/72 inch) with the origin at the page's bottom-left corner; Y increases upward (PDF convention, not screen convention). |
PdfRect Constructor
A rectangle in PDF user space. Coordinates are in points (1/72 inch) with the origin at the page's bottom-left corner; Y increases upward (PDF convention, not screen convention).
public PdfRect(double Left, double Bottom, double Right, double Top)
Parameters
Left double
Bottom double
Right double
Top double
Methods
| Name | Description |
|---|---|
| Deconstruct | No summary available. |
| Equals (2 overloads) | No summary available. |
| GetHashCode | No summary available. |
| ToString | No summary available. |
Deconstruct Method
public void Deconstruct(double& Left, double& Bottom, double& Right, double& Top)
Parameters
Left double&
Bottom double&
Right double&
Top double&
Equals overloads
Equals Method
public bool Equals(Avalonia.Controls.Pdf.Core.PdfRect other)
Parameters
other Avalonia.Controls.Pdf.Core.PdfRect
Returns
bool
Equals Method
public bool Equals(object obj)
Parameters
obj object
Returns
bool
GetHashCode Method
public int GetHashCode()
Returns
int
ToString Method
public string ToString()
Returns
string
Properties
| Name | Description |
|---|---|
| Bottom | No summary available. |
| Height | The rectangle height (Avalonia.Controls.Pdf.Core.PdfRect.Top − Avalonia.Controls.Pdf.Core.PdfRect.Bottom). |
| Left | No summary available. |
| Right | No summary available. |
| Top | No summary available. |
| Width | The rectangle width (Avalonia.Controls.Pdf.Core.PdfRect.Right − Avalonia.Controls.Pdf.Core.PdfRect.Left). |
Bottom Property
public double Bottom { get; set; }
Height Property
The rectangle height (Avalonia.Controls.Pdf.Core.PdfRect.Top − Avalonia.Controls.Pdf.Core.PdfRect.Bottom).
public double Height { get; set; }
Left Property
public double Left { get; set; }
Right Property
public double Right { get; set; }
Top Property
public double Top { get; set; }
Width Property
The rectangle width (Avalonia.Controls.Pdf.Core.PdfRect.Right − Avalonia.Controls.Pdf.Core.PdfRect.Left).
public double Width { get; set; }