Point::Subtraction Operator (Point, Size)
.NET Framework (current version)
Namespace:
System.Drawing
Assembly: System.Drawing (in System.Drawing.dll)
Return to top
Assembly: System.Drawing (in System.Drawing.dll)
Parameters
- pt
-
Type:
System.Drawing::Point
The Point to translate.
- sz
-
Type:
System.Drawing::Size
A Size that specifies the pair of numbers to subtract from the coordinates of pt.
Return Value
Type: System.Drawing::PointA Point structure that is translated by the negative of a given Size structure.
The following code example demonstrates how to use the PointConverter and the Subtraction operator. This example is designed to be used with Windows Forms. Paste this code into a form and call the ShowPointConverter method when handling the form's Paint event, passing e as PaintEventArgs.
void ShowPointConverter( PaintEventArgs^ e ) { // Create the PointConverter. System::ComponentModel::TypeConverter^ converter = System::ComponentModel::TypeDescriptor::GetConverter( Point::typeid ); Point point1 = *dynamic_cast<Point^>(converter->ConvertFromString( "200, 200" )); // Use the subtraction operator to get a second point. Point point2 = point1 - System::Drawing::Size( 190, 190 ); // Draw a line between the two points. e->Graphics->DrawLine( Pens::Black, point1, point2 ); }
.NET Framework
Available since 1.1
Available since 1.1
Show: