UnityEditor.ListViewGUILayout.GUILayoutedListViewGroup.CalcHeight C# (CSharp) Method

CalcHeight() public method

public CalcHeight ( ) : void
return void
            public override void CalcHeight()
            {
                base.minHeight = 0f;
                base.maxHeight = 0f;
                base.CalcHeight();
                this.margin.top = 0;
                this.margin.bottom = 0;
                if (base.minHeight == 0f)
                {
                    base.minHeight = 1f;
                    base.maxHeight = 1f;
                    this.state.rowHeight = 1;
                }
                else
                {
                    this.state.rowHeight = (int) base.minHeight;
                    base.minHeight *= this.state.totalRows;
                    base.maxHeight *= this.state.totalRows;
                }
            }
ListViewGUILayout.GUILayoutedListViewGroup