FairyGUI.TextField.BuildLinesFinal C# (CSharp) Method

BuildLinesFinal() private method

private BuildLinesFinal ( ) : void
return void
        void BuildLinesFinal()
        {
            if (!_input)
            {
                if (_autoSize == AutoSizeType.Both)
                {
                    _updatingSize = true;
                    if (_richTextField != null)
                        _richTextField.SetSize(_textWidth, _textHeight);
                    else
                        SetSize(_textWidth, _textHeight);
                    _updatingSize = false;
                }
                else if (_autoSize == AutoSizeType.Height)
                {
                    _updatingSize = true;
                    if (_richTextField != null)
                        _richTextField.height = _textHeight;
                    else
                        this.height = _textHeight;
                    _updatingSize = false;
                }
            }

            _yOffset = 0;
            ApplyVertAlign();
        }