Show / Hide Table of Contents

Class Point

The Class Point.

Inheritance
System.Object
Point
Implements
System.IDisposable
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
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
System.Double px

the x coordinate

System.Double py

the y coordinate

Properties

x

x coordinate

Declaration
public double x { get; set; }
Property Value
Type Description
System.Double

y

y coordinate

Declaration
public double y { get; set; }
Property Value
Type Description
System.Double

Methods

Dispose()

Releases all resources used by the Point

Declaration
public override sealed void Dispose()

Dispose(Boolean)

Declaration
[HandleProcessCorruptedStateExceptions]
protected virtual void Dispose(bool A_0)
Parameters
Type Name Description
System.Boolean A_0

Finalize()

Allows a Point to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.

Declaration
protected void Finalize()

Implements

System.IDisposable
Back to top Generated by DocFX