richtextformat

What is the best solution for converting RichTextFormat info to HTML in C#?

What is the best solution for converting RichTextFormat info to HTML in C#? I know there are libraries out there that do this, and I was curious to see if you guys had any advice as to which ones are the better ones. Thanks, Jeff ...

Does RichTextBox control internally change page margins of the RTF document?

We're using Microsoft's RichTextBox to manipulate RTF text that we obtain from a 3rd party database. Typical actions we do are : Add additional text to the top of the RTF document Add additional Text to the bottom of the RTFdocument Merge 2 RTF documents. We are noticing that the at the end of the operations the page margins are no ...

How do I make a RichTextArea in Google Web Toolkit(GWT) Selectable/Highlight-able by a mouse but not Editable/Modifiable?

I'm currently making a GWT project where I display some HTML in a RichTextArea, and I want the RichTextArea to be selectable/highlight-able by a mouse but NOT be editable/modifiable by the user. In addition to this question, could you also tell me how to retrieve some highlighted text in string from without me having to add a text-backgr...

WPF Richtext box content

how do i get the richtext box's content with all the formatting intact. i used a TextRange object to get the content out of the richtext box but wen i get its .text property all its formatting is gone ... how do i get the formatted content in richtext box in wpf. ...

Simple way to reading/writing NSAttributedString in iOS?

In Mac OS X, there is AppKit addition which supports reading and writing of NSAttributedString as RTF format. Equivalent in iOS? Should I make my own? ...

C#: Displaying text in richtextbox in reverse order/updwards

Hi, I am trying to create a 'log display' using the richtextbox control in C#.NET. public void logLine(string line) { rtxtLoginMessage.AppendText(line + "\r\n"); } Is there a way to display the text in reverse order/upwards? (where the newest log and date will be displayed at the top) Your help is much appreciated. ...