Exemple #1
0
        public void AppendText([CanBeNull] string text, [CanBeNull] string highlighterAttributeId)
        {
            if (text.IsEmpty())
            {
                return;
            }

            TextStyle textStyle = _textStyleHighlighterManager.GetHighlighterTextStyle(highlighterAttributeId);

            _richText.Append(text, textStyle);
        }