Click or drag to resize

PdfPoint Class

Represents an ordered pair of x and y coordinates that defines a point in a PDF two-dimensional plane.
Inheritance Hierarchy
SystemObject
  Opait.Pdf.ApiPdfPoint

Namespace:  Opait.Pdf.Api
Assembly:  Opait.Pdf.Api (in Opait.Pdf.Api.dll) Version: 1.3.3.0
Syntax
C#
public class PdfPoint : IEquatable<PdfPoint>

The PdfPoint type exposes the following members.

Constructors
  NameDescription
Public methodPdfPoint
Default constructor.
Public methodPdfPoint(PdfPoint)
Initializes a new instance of the PdfPoint class using another point.
Public methodPdfPoint(Double, Double)
Initializes a new instance of the PdfPoint class with the specified coordinates.
Public methodPdfPoint(PdfPoint, Double, Double)
Initializes a new instance of the PdfPoint class using a point on a circle.
Public methodPdfPoint(Double, Double, Double, Double)
Initializes a new instance of the PdfPoint class using a point on a circle.
Top
Properties
  NameDescription
Public propertyIsEmpty
Gets a value indicating whether this PdfPoint is empty.
Top
Methods
  NameDescription
Public methodAdd(PdfPoint)
Adds the specified point to this point's coordinates.
Public methodAdd(PdfSize)
Adds the specified size to this point's coordinates.
Public methodAdd(Double, Double)
Adds the specified values to the point's coordinates.
Public methodEquals(Object)
Equals - compares this Point with the passed in object.
(Overrides ObjectEquals(Object).)
Public methodEquals(PdfPoint)
Equals - compares this PdfPoint with the passed in object.
Public methodGetHashCode
Returns the hash code for this PdfPoint.
(Overrides ObjectGetHashCode.)
Public methodSubtract(PdfPoint)
Subtracts the specified point from this point's coordinates.
Public methodSubtract(PdfSize)
Subtracts the specified size from this point's coordinates.
Public methodSubtract(Double, Double)
Subtracts the specified values from the point's coordinates.
Public methodToString
Converts this PdfPoint to a human-readable string.
(Overrides ObjectToString.)
Top
Operators
  NameDescription
Public operatorStatic memberAddition(PdfPoint, PdfPoint)
Adds two instances of the PdfPoint class.
Public operatorStatic memberAddition(PdfPoint, PdfSize)
Moves a PdfPoint by PdfSize.
Public operatorStatic memberEquality
Checks two PdfPoint instances for equality.
Public operatorStatic memberInequality
Checks two PdfPoint instances for inequality.
Public operatorStatic memberSubtraction(PdfPoint, PdfPoint)
Subtracts two instances of the PdfPoint class.
Public operatorStatic memberSubtraction(PdfPoint, PdfSize)
Subtract PdfSize from PdfPoint.
Public operatorStatic memberUnaryNegation
Applies the unary negative sign to a PdfPoint.
Top
Fields
  NameDescription
Public fieldStatic memberEmpty
Represents a PdfPoint that has X and Y values set to zero.
Public fieldX
Gets the x-coordinate of this Point.
Public fieldY
Gets the y-coordinate of this Point.
Top
See Also