Word Automation: Write RTF text without going through clipboard - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T19:39:01Zhttp://stackoverflow.com/feeds/question/22326http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/22326/word-automation-write-rtf-text-without-going-through-clipboard6Word Automation: Write RTF text without going through clipboardVincent2008-08-22T13:24:24Z2009-01-17T03:23:49Z
<p>I am trying to <strong>replace the current selection in Word (2003/2007)</strong> by some <strong>RTF string</strong> stored in a variable.</p>
<p>Here is the current code:</p>
<pre><code>Clipboard.SetText(strRTFString, TextDataFormat.Rtf)
oWord.ActiveDocument.ActiveWindow.Selection.PasteAndFormat(0)
</code></pre>
<p>Is there any way to do the same thing without going through the clipboard. Or is there any way to push the clipboard data to a safe place and restore it after?</p>
http://stackoverflow.com/questions/22326/word-automation-write-rtf-text-without-going-through-clipboard/22335#22335-3Answer by samjudson for Word Automation: Write RTF text without going through clipboardsamjudson2008-08-22T13:26:46Z2008-08-22T16:17:00Z<p>You can use a RichTextbox to convert RTF to text or vice versa.</p>
<pre><code>RichTextBox r = new RichTextBox();
r.Rtf = strRTFString;
Console.WriteLine(r.Text);
</code></pre>
http://stackoverflow.com/questions/22326/word-automation-write-rtf-text-without-going-through-clipboard/27425#274257Answer by Joel Spolsky for Word Automation: Write RTF text without going through clipboardJoel Spolsky2008-08-26T04:54:01Z2008-08-26T04:54:01Z<p>Put the RTF in a file instead of the clipboard, then insert from the file, e.g.</p>
<blockquote>
<p><code>Selection.InsertFile FileName:="myfile.rtf", Range :="", _
ConfirmConversions:=False, Link:=False, Attachment:=False</code></p>
</blockquote>