UnityEngine.GUILayoutEntry.GUILayoutEntry C# (CSharp) Method

GUILayoutEntry() public method

public GUILayoutEntry ( float _minWidth, float _maxWidth, float _minHeight, float _maxHeight, GUIStyle _style ) : System
_minWidth float
_maxWidth float
_minHeight float
_maxHeight float
_style GUIStyle
return System
        public GUILayoutEntry(float _minWidth, float _maxWidth, float _minHeight, float _maxHeight, GUIStyle _style)
        {
            this.rect = new Rect(0f, 0f, 0f, 0f);
            this.m_Style = GUIStyle.none;
            this.minWidth = _minWidth;
            this.maxWidth = _maxWidth;
            this.minHeight = _minHeight;
            this.maxHeight = _maxHeight;
            if (_style == null)
            {
                _style = GUIStyle.none;
            }
            this.style = _style;
        }

Same methods

GUILayoutEntry::GUILayoutEntry ( float _minWidth, float _maxWidth, float _minHeight, float _maxHeight, GUIStyle _style, GUILayoutOption options ) : System