PixelFarm.Drawing.RectangleF.RectangleF C# (CSharp) Method

RectangleF() public method

RectangleF Constructor
Creates a RectangleF from PointF and SizeF values.
public RectangleF ( PointF location, SizeF size ) : System
location PointF
size SizeF
return System
        public RectangleF(PointF location, SizeF size)
        {
            x = location.X;
            y = location.Y;
            width = size.Width;
            height = size.Height;
        }

Same methods

RectangleF::RectangleF ( float x, float y, float width, float height ) : System