AlphaTab.Platform.JavaScript.Html5Canvas.StrokeRect C# (CSharp) 메소드

StrokeRect() 공개 메소드

public StrokeRect ( float x, float y, float w, float h ) : void
x float
y float
w float
h float
리턴 void
        public void StrokeRect(float x, float y, float w, float h)
        {
            _context.strokeRect(x - 0.5, y - 0.5, w, h);
        }