Class Point
The Class Point.
Implements
Inherited Members
Namespace: pdftron.PDF
Assembly: PDFNet.dll
Syntax
public class Point : IDisposable
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 |
Methods
Dispose()
Releases all resources used by the Point
Declaration
public override sealed void Dispose()
Dispose(bool)
Declaration
[HandleProcessCorruptedStateExceptions]
protected virtual void Dispose(bool A_0)
Parameters
Type | Name | Description |
---|---|---|
bool | A_0 |
~Point()
Allows a Point to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
Declaration
protected ~Point()