AlphaTab.Platform.JavaScript.Html5Canvas.FillRect C# (CSharp) Method

FillRect() public method

public FillRect ( float x, float y, float w, float h ) : void
x float
y float
w float
h float
return void
        public void FillRect(float x, float y, float w, float h)
        {
            _context.fillRect(x - 0.5, y - 0.5, w, h);
        }