UnityEditor.AudioMixerGroupSelector.GroupTreeViewGUI.GetTotalSize C# (CSharp) Method

GetTotalSize() public method

public GetTotalSize ( List rows ) : Vector2
rows List
return Vector2
            public override Vector2 GetTotalSize(List<TreeViewItem> rows)
            {
                if (this.m_RowRects.Count == 0)
                {
                    return new Vector2(1f, 1f);
                }
                Rect rect = this.m_RowRects[this.m_RowRects.Count - 1];
                return new Vector2(base.GetMaxWidth(rows) + 10f, rect.yMax);
            }