How should I convert Rtf to plain text?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

So far, as a work-around at least, I'm instantiating a RichTextBox, setting
its Rtf property to the rich text I have, then using the Text property to get
the plain text.

This works, but I expect there's a more efficient way.
 
PIEBALD said:
So far, as a work-around at least, I'm instantiating a RichTextBox, setting
its Rtf property to the rich text I have, then using the Text property to get
the plain text.

This works, but I expect there's a more efficient way.

Is this process a bottleneck, then?

You know what they say about premature optimization...
 
Back
Top