tags:

views:

44

answers:

1

C#: in the .NET libraries, is there a standard class that can view and print an RTF string?

I essentially need a "viewer" which will simply display a simple or rich-text string and have a print button which would allow printing of the displayed string.

+4  A: 

You can use RichTextBox and set the Rtf member.

Regarding printing you can see this related question where there are some useful links:

Mark Byers