Class PdfRect

Inheritance
System.Object
PdfRect
Namespace: PSPDFKit.Geometry
Assembly: PSPDFKit.dll
Syntax
public sealed class PdfRect

Constructors

PdfRect(Single, Single, Single, Single)

Constructs a PdfRect object.

Declaration
public PdfRect(float left, float bottom, float right, float top)
Parameters
Type Name Description
System.Single left

Left border coordinate in PDF points.

System.Single bottom

Bottom border coordinate in PDF points.

System.Single right

Right border coordinate in PDF points.

System.Single top

Top border coordinate in PDF points.

Properties

Bottom

Bottom border coordinate in PDF points.

Declaration
public float Bottom { get; set; }
Property Value
Type Description
System.Single

Left

Left border coordinate in PDF points.

Declaration
public float Left { get; set; }
Property Value
Type Description
System.Single

Right

Right border coordinate in PDF points.

Declaration
public float Right { get; set; }
Property Value
Type Description
System.Single

Top

Top border coordinate in PDF points.

Declaration
public float Top { get; set; }
Property Value
Type Description
System.Single