Class Point
The Class Point.
Inherited Members
Namespace: pdftron.PDF
Assembly: PDFTronDotNet.dll
Syntax
public class Point
Constructors
Point()
Instantiates a new point.
Declaration
public Point()
Point(double, double)
Instantiates a new point.
Declaration
public Point(double px, double py)
Parameters
| Type | Name | Description |
|---|---|---|
| double | px | the x coordinate |
| double | py | the y coordinate |
Properties
x
x coordinate
Declaration
public double x { get; set; }
Property Value
| Type | Description |
|---|---|
| double |
y
y coordinate
Declaration
public double y { get; set; }
Property Value
| Type | Description |
|---|---|
| double |