Point.Add(Point, Size) Method
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public:
static System::Drawing::Point Add(System::Drawing::Point pt, System::Drawing::Size sz);
public static System.Drawing.Point Add(System.Drawing.Point pt, System.Drawing.Size sz);
static member Add : System.Drawing.Point * System.Drawing.Size -> System.Drawing.Point
Public Shared Function Add (pt As Point, sz As Size) As Point
The Point that is the result of the addition operation.
The following example shows how to use the Add method. To run this example, paste it into a Windows Form. Handle the form's Paint event and call the AddPoint
method from the Paint event-handling method, passing e
as PaintEventArgs.
private void AddPoint(PaintEventArgs e)
{
Point point1 = new Point(10, 10);
Point point2 = Point.Add(point1, new Size(250,0));
e.Graphics.DrawLine(Pens.Red, point1, point2);
}
Private Sub AddPoint(ByVal e As PaintEventArgs)
Dim point1 As New Point(10, 10)
Dim point2 As Point = Point.Add(point1, New Size(250, 0))
e.Graphics.DrawLine(Pens.Red, point1, point2)
End Sub
The Add adds the Width and Height of the specified Size to the X and Y values of the specified point.
Продукт | Версии |
---|---|
.NET | Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10 |
.NET Framework | 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 2.0, 2.1 |
Обратна връзка за .NET
.NET е проект с отворен код. Изберете връзка, за да предоставите обратна връзка: