System.Windows.Forms.PointExtenders.Add C# (CSharp) Method

Add() public static method

public static Add ( this orgPoint, Point point ) : Point
orgPoint this
point System.Drawing.Point
return System.Drawing.Point
		public static Point Add (this Point orgPoint, Point point)
		{
			var x = orgPoint.X + point.X;
			var y = orgPoint.Y + point.Y;
			return new Point (x, y);
		}
		public static Point Subtract (this Point orgPoint, Point point)

Same methods

PointExtenders::Add ( this orgPoint, PointF point ) : PointF
PointExtenders::Add ( this orgPoint, Size size ) : PointF
PointExtenders::Add ( this orgPoint, SizeF size ) : PointF
PointExtenders