AGENT.Contrib.Drawing.Point.Point C# (CSharp) Method

Point() public method

Initializes a new instance of the System.Drawing.Point class from a System.Drawing.Size.
public Point ( Size sz ) : System
sz Size A System.Drawing.Size that specifies the coordinates for the new System.Drawing.Point.
return System
        public Point(Size sz)
            : this(sz.Width, sz.Height)
        {
        }

Same methods

Point::Point ( int x, int y ) : System