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

Size() public method

Initializes a new instance of the System.Drawing.Size structure from the specified System.Drawing.Point structure.
public Size ( Point pt ) : System
pt Point The System.Drawing.Point structure from which to initialize this Size structure.
return System
        public Size(Point pt)
            : this(pt.X, pt.Y)
        {
        }

Same methods

Size::Size ( int width, int height ) : System