CentralServerDemo.ExRichTextBox.InsertRtf C# (CSharp) Method

InsertRtf() public method

Assumes that the string passed as a parameter is valid RTF text and attempts to insert it as RTF into the content of the control.
NOTE: The text is inserted wherever the caret is at the time of the call, and if any text is selected, that text is replaced.
public InsertRtf ( string _rtf ) : void
_rtf string
return void
        public void InsertRtf(string _rtf) {
            this.SelectedRtf = _rtf;
        }