Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Point::Add Method (Point, Size)

 

Adds the specified Size to the specified Point.

Namespace:   System.Drawing
Assembly:  System.Drawing (in System.Drawing.dll)

public:
static Point Add(
	Point pt,
	Size sz
)

Parameters

pt
Type: System.Drawing::Point

The Point to add.

sz
Type: System.Drawing::Size

The Size to add

Return Value

Type: System.Drawing::Point

The Point that is the result of the addition operation.

The Add adds the Width and Height of the specified Size to the X and Y values of the specified point.

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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft