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

SizeF() public method

Initializes a new instance of the class from the specified dimensions.

public SizeF ( float width, float height ) : System.Numerics.Hashing
width float
height float
return System.Numerics.Hashing
        public SizeF(float width, float height)
        {
            _width = width;
            _height = height;
        }

Same methods

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