Alsing.Drawing.GDI.GDISurface.DrawRect C# (CSharp) Method

DrawRect() public method

public DrawRect ( Color color, int left, int top, int width, int height ) : void
color Color
left int
top int
width int
height int
return void
        public void DrawRect(Color color, int left, int top, int width, int height)
        {
            var p = new GDIPen(color, 1);
            DrawRect(p, left, top, width, height);
            p.Dispose();
        }

Same methods

GDISurface::DrawRect ( GDIPen pen, int left, int top, int width, int height ) : void