FairyGUI.GSlider.HandleSizeChanged C# (CSharp) Method

HandleSizeChanged() protected method

protected HandleSizeChanged ( ) : void
return void
        protected override void HandleSizeChanged()
        {
            base.HandleSizeChanged();

            if (_barObjectH != null)
                _barMaxWidth = this.width - _barMaxWidthDelta;
            if (_barObjectV != null)
                _barMaxHeight = this.height - _barMaxHeightDelta;

            if (!this.underConstruct)
                Update();
        }