FairyGUI.RichTextField.RichTextField C# (CSharp) Method

RichTextField() public method

public RichTextField ( ) : System.Collections.Generic
return System.Collections.Generic
        public RichTextField()
        {
            gameObject.name = "RichTextField";
            this.opaque = true;

            htmlPageContext = HtmlPageContext.inst;
            htmlParseOptions = new HtmlParseOptions();

            this.textField = new TextField();
            textField.EnableRichSupport(this);
            AddChild(textField);

            _refreshObjectsDelegate = InternalRefreshObjects;
        }