FairyGUI.TextField.BuildLinesFinal C# (CSharp) Метод

BuildLinesFinal() приватный Метод

private BuildLinesFinal ( ) : void
Результат 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();
        }