Skip to content

PDFPoint

Namespace: O2S.Components.PDF4NET.Graphics

Defines a PDF point.

public class PDFPoint

Inheritance ObjectPDFPoint

Constructors

PDFPoint()

Initializes a new PDFPoint object.

public PDFPoint()

PDFPoint(Double, Double)

Initializes a new PDFPoint object with the specified position.

public PDFPoint(double x, double y)

Parameters

x Double
The x position.

y Double
The y position.


PDFPoint(PDFPoint)

Initializes a new PDFPoint object with the specified point.

public PDFPoint(PDFPoint point)

Parameters

point PDFPoint
Source point.


Properties

X

Gets or set the x position.

public double X { get; set; }

Property Value

Double
The x coodinate of the point.


Y

Gets or set the y position.

public double Y { get; set; }

Property Value

Double
The y coodinate of the point.


Methods

ToString()

Returns a String that represents the current Object.

public string ToString()

Returns

String
String that represents the current Object.