AlphaTab.Rendering.TabBarRenderer.GetTabY C# (CSharp) Method

GetTabY() public method

Gets the relative y position of the given steps relative to first line.
public GetTabY ( int line, float correction ) : float
line int the amount of steps while 2 steps are one line
correction float
return float
        public float GetTabY(int line, float correction = 0)
        {
            return (LineOffset * line) + (correction * Scale);
        }