FairyGUI.GTextField.UpdateTextFormat C# (CSharp) 메소드

UpdateTextFormat() 보호된 메소드

protected UpdateTextFormat ( ) : void
리턴 void
        protected void UpdateTextFormat()
        {
            TextFormat tf = _textField.textFormat;
            tf.CopyFrom(_textFormat);
            if (_textFormat.font == null || _textFormat.font.Length == 0)
                tf.font = UIConfig.defaultFont;
            _textField.textFormat = tf;

            if (!underConstruct)
                UpdateSize();
        }