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
...
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 ...
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...
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.
...
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?
...
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.
...