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

FillRect() public method

public FillRect ( Color color, int x, int y, int width, int height ) : void
color Color
x int
y int
width int
height int
return void
        public void FillRect(Color color, int x, int y, int width, int height)
        {
            var b = new GDIBrush(color);
            FillRect(b, x, y, width, height);
            b.Dispose();
        }

Same methods

GDISurface::FillRect ( GDIBrush brush, int x, int y, int width, int height ) : void