ComponentFactory.Krypton.Ribbon.KryptonRibbonGroupRichTextBox.AppendText C# (CSharp) Method

AppendText() public method

Appends text to the current text of a rich text box.
public AppendText ( string text ) : void
text string The text to append to the current contents of the text box.
return void
        public void AppendText(string text)
        {
            _richTextBox.AppendText(text);
        }