views:

715

answers:

2

Are there any rich editors for WinForms that support right-to-left and can export to HTML?

The standard RichTextBox cannot export to HTML (Is there an RTF to HTML converter?)

DevExpress's XtraRichEdit doesn't support right-to-left.

+1  A: 

You can use NRTFTree - A class library for RTF processing in C# for managing Rich Text

Note: NRtfTree is NOT a library to convert RTF to HTML, but there's an example on achieving this using NRtfTree in one of the demo source files.

AB Kolan
A: 

Take a look at following link: http://www.codeproject.com/KB/edit/htmlrichtextbox.aspx

Beatles1692