FairyGUI.TextField.EnableRichSupport C# (CSharp) Method

EnableRichSupport() private method

private EnableRichSupport ( RichTextField richTextField ) : void
richTextField RichTextField
return void
        internal void EnableRichSupport(RichTextField richTextField)
        {
            _richTextField = richTextField;
            if (richTextField is InputTextField)
            {
                _input = true;
                EnableCharPositionSupport();
            }
        }