[]
Represents an ordered pair of double X and Y coordinates that defines a point in a two-dimensional plane.
public struct Point
Name | Description |
---|---|
Point(double, double) | Initializes a new instance of the Point structure. |
Name | Description |
---|---|
Empty | Represents an empty instance of the Point structure. |
IsEmpty | Gets a value indicating whether the current Point is empty. |
X | Gets or sets the X coordinate of the current Point. |
Y | Gets or sets the Y coordinate of the current Point. |
Name | Description |
---|---|
Add(Point, Size) | |
Ceiling() | Converts the current Point structure to a Point by rounding the double coordinates to the next higher integer values. |
Equals(object) | Indicates whether this instance and a specified object are equal. |
GetHashCode() | Returns the hash code for this instance. |
Offset(double, double) | Offsets the current Point structure by the specified values. |
Substract(Point, Size) | |
ToPointF() | |
ToString() | Converts the current Point to a human readable string. |
Truncate() | Converts the current Point structure to a Point by truncating the values of the Point object. |
Name | Description |
---|---|
operator +(Point, Size) | |
operator ==(Point, Point) | Indicates whether two Point structures are equal. |
explicit operator Size(Point) | |
implicit operator Point(Point) | |
implicit operator Point(PointF) | |
operator !=(Point, Point) | Indicates whether two Point structures are not equal. |
operator -(Point, Size) |