Point Structure
Represents an ordered pair of integer x- and y-coordinates that defines a point in a two-dimensional plane.
Assembly: System.Drawing (in System.Drawing.dll)
| Name | Description | |
|---|---|---|
![]() | Point(Int32) | Initializes a new instance of the Point class using coordinates specified by an integer value. |
![]() | Point(Int32, Int32) | Initializes a new instance of the Point class with the specified coordinates. |
![]() | Point(Size) | Initializes a new instance of the Point class from a Size. |
| Name | Description | |
|---|---|---|
![]() ![]() | Add(Point, Size) | Adds the specified Size to the specified Point. |
![]() ![]() | Ceiling(PointF) | |
![]() | Equals(Object^) | Specifies whether this Point contains the same coordinates as the specified Object.(Overrides ValueType::Equals(Object^).) |
![]() | GetHashCode() | Returns a hash code for this Point.(Overrides ValueType::GetHashCode().) |
![]() | GetType() | |
![]() | Offset(Int32, Int32) | Translates this Point by the specified amount. |
![]() | Offset(Point) | Translates this Point by the specified Point. |
![]() ![]() | Round(PointF) | Converts the specified PointF to a Point object by rounding the Point values to the nearest integer. |
![]() ![]() | Subtract(Point, Size) | Returns the result of subtracting specified Size from the specified Point. |
![]() | ToString() | Converts this Point to a human-readable string.(Overrides ValueType::ToString().) |
![]() ![]() | Truncate(PointF) | Converts the specified PointF to a Point by truncating the values of the Point. |
| Name | Description | |
|---|---|---|
![]() ![]() | Addition(Point, Size) | Translates a Point by a given Size. |
![]() ![]() | Equality(Point, Point) | |
![]() ![]() | Explicit(Point to Size) | Converts the specified Point structure to a Size structure. |
![]() ![]() | Implicit(Point to PointF) | Converts the specified Point structure to a PointF structure. |
![]() ![]() | Inequality(Point, Point) | |
![]() ![]() | Subtraction(Point, Size) | Translates a Point by the negative of a given Size. |
To convert a Point to a PointF, use Implicit(Point to PointF).
The following code example creates points and sizes using several of the overloaded operators defined for these types. It also demonstrates how to use the SystemPens class.
This example is designed to be used with Windows Forms. Create a form that contains a Button named subtractButton. Paste the code into the form and call the CreatePointsAndSizes method from the form's Paint event-handling method, passing e as PaintEventArgs.
void CreatePointsAndSizes( PaintEventArgs^ e ) { // Create the starting point. Point startPoint = Point(subtractButton->Size); // Use the addition operator to get the end point. Point endPoint = startPoint + System::Drawing::Size( 140, 150 ); // Draw a line between the points. e->Graphics->DrawLine( SystemPens::Highlight, startPoint, endPoint ); // Convert the starting point to a size and compare it to the // subtractButton size. System::Drawing::Size buttonSize = (System::Drawing::Size)startPoint; if ( buttonSize == subtractButton->Size ) { e->Graphics->DrawString( "The sizes are equal.", gcnew System::Drawing::Font( this->Font,FontStyle::Italic ), Brushes::Indigo, 10.0F, 65.0F ); } }
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.




