Show / Hide Table of Contents

Class Point

The Class Point.

Inheritance
object
Point
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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
In This Article
Back to top Generated by DocFX