3

I have some text in RTF files. I need to extract the text but color and size must be extracted to my variables as well.

How can it be done with any .NET tools or 3rd party lib's classes?

Otiel
  • 18,404
  • 16
  • 78
  • 126
Jcf
  • 201
  • 2
  • 8

1 Answers1

1

NRtfTree Library (LGPL) is a set of classes written entirely in C# that may be used to manage RTF documents in your own applications. NRtfTree will help you:

  • Open and parse RTF files.
  • Analyze the content of RTF files.
  • Add, modify and remove document elements (i.e. text, control words, control symbols).
  • Create new RTF documents.

Check out this article about NRtfTree: NRTFTree - A class library for RTF processing in C#.

Dmitriy Konovalov
  • 1,777
  • 14
  • 14