FairyGUI.GTextInput.GTextInput C# (CSharp) Méthode

GTextInput() public méthode

public GTextInput ( ) : System.Collections.Generic
Résultat System.Collections.Generic
        public GTextInput()
        {
            onFocusIn = new EventListener(this, "onFocusIn");
            onFocusOut = new EventListener(this, "onFocusOut");
            onChanged = new EventListener(this, "onChanged");

            this.focusable = true;
            _textField.autoSize = AutoSizeType.None;
            _textField.wordWrap = false;
        }