FairyGUI.GTextInput.GTextInput C# (CSharp) Method

GTextInput() public method

public GTextInput ( ) : System.Collections.Generic
return 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;
        }