FairyGUI.TextField.TextField C# (CSharp) Method

TextField() public method

public TextField ( ) : System
return System
        public TextField()
        {
            _touchDisabled = true;

            _textFormat = new TextFormat();
            _textFormat.size = 12;
            _textFormat.lineSpacing = 3;
            _strokeColor = new Color(0, 0, 0, 1);
            _fontSizeScale = 1;
            _renderScale = UIContentScaler.scaleFactor;

            _wordWrap = true;
            _text = string.Empty;

            _elements = new List<HtmlElement>(1);
            _lines = new List<LineInfo>(1);

            CreateGameObject("TextField");
            graphics = new NGraphics(gameObject);
        }