NewTOAPIA.Drawing.RectangleG.RectangleG C# (CSharp) Method

RectangleG() public method

public RectangleG ( int x, int y, int width, int height ) : NewTOAPIA.Graphics
x int
y int
width int
height int
return NewTOAPIA.Graphics
        public RectangleG(int x, int y, int width, int height)
        {
            fRectangle = new RectangleI(x, y, width, height);

            Begin();
            MoveTo(x, y, false);
            LineTo(x, y + height, false);
            LineTo(x + width, y + height, false);
            LineTo(x + width, y, false);
            LineTo(x, y, true);
            End();
        }

Same methods

RectangleG::RectangleG ( int x, int y, int width, int height ) : System
RectangleG