UnityEditor.TreeViewForAudioMixerGroup.GroupTreeViewGUI.GetRowRect C# (CSharp) Method

GetRowRect() public method

public GetRowRect ( int row, float rowWidth ) : Rect
row int
rowWidth float
return UnityEngine.Rect
            public override Rect GetRowRect(int row, float rowWidth)
            {
                if (base.m_TreeView.isSearching)
                {
                    return base.GetRowRect(row, rowWidth);
                }
                if (base.m_TreeView.data.rowCount != this.m_RowRects.Count)
                {
                    this.CalculateRowRects();
                }
                return this.m_RowRects[row];
            }