System.Drawing.SizeF.SizeF C# (CSharp) Method

SizeF() public method

Initializes a new instance of the class from the specified .

public SizeF ( PointF pt ) : System.Numerics.Hashing
pt PointF
return System.Numerics.Hashing
        public SizeF(PointF pt)
        {
            _width = pt.X;
            _height = pt.Y;
        }

Same methods

SizeF::SizeF ( System pt )
SizeF::SizeF ( float width, float height )
SizeF::SizeF ( SizeF size ) : System.Numerics.Hashing
SizeF::SizeF ( float width, float height ) : System.Numerics.Hashing