Tag Archives: RTF text

Get plain text from an RTF text

RTF Document

[php] static public string ConvertToText(string rtf) { using(RichTextBox rtb = new RichTextBox()) { rtb.Rtf = rtf; return rtb.Text; } } [/php]

Read More »