AlphaTab.Rendering.Staves.StaveGroup.ScaleToWidth C# (CSharp) Method

ScaleToWidth() public method

public ScaleToWidth ( float width ) : void
width float
return void
        public void ScaleToWidth(float width)
        {
            for (int i = 0, j = _allStaves.Count; i < j; i++)
            {
                _allStaves[i].ScaleToWidth(width);
            }
            Width = width;
        }