RectangleF.RectangleF C# (CSharp) Method

RectangleF() public method

public RectangleF ( float x, float y, float width, float height ) : System
x float
y float
width float
height float
return System
    public RectangleF(float x, float y, float width, float height)
    {
        _x = x; _y = y; _width = width; _height = height;
    }