Click or drag to resize

Point Structure

Represents an ordered pair of x- and y-coordinates that defines a point in a two-dimensional plane.
Inheritance Hierarchy
SystemObject
  SystemValueType
    SautinSoft.Document.DrawingPoint

Namespace: SautinSoft.Document.Drawing
Assembly: SautinSoft.Document (in SautinSoft.Document.dll) Version: 2024.1.24
Syntax
public struct Point : IEquatable<Point>

The Point type exposes the following members.

Constructors
 NameDescription
Public methodPoint(Double, Double) Initializes a new instance of the Point struct.
Public methodPoint(Double, Double, LengthUnit) Initializes a new instance of the Point struct.
Top
Properties
 NameDescription
Public propertyX Gets the x-coordinate in points.
Public propertyY Gets the y-coordinate in points.
Top
Methods
 NameDescription
Public methodEquals(Object) Determines whether the specified Object is equal to this Point instance.
(Overrides ValueTypeEquals(Object))
Public methodEquals(Point) Determines whether the other Point is equal to this Point instance.
Public methodGetHashCode Returns a hash code for this Point instance.
(Overrides ValueTypeGetHashCode)
Public methodToString Returns the value as string, in such format: X:4.4347; Y:105.343023.
(Overrides ValueTypeToString)
Top
Operators
 NameDescription
Public operatorStatic memberEquality(Point, Point) Determines whether first and second Points are equal.
Public operatorStatic memberInequality(Point, Point) Determines whether first and second Points are not equal.
Top
See Also