.net - Insert RTF-Data without using clipboard or insertFile in C# -
i've question inserting rtf data word.range
objects. implemented program fills word bookmarks using values db.
currently implemented 2 ways fill rtf data word bookmarks.
- save rtf value temporary file , use
insertfile
method of range object. - copy rtf value clipboard. select range of word bookmark , use
paste
method.
both methods have disadvantages can not handle:
i can't use first way, because writes file on harddisk , adds newline character @ end of rtf value/file. second way erases stored clipboard data.
is there possibility insert data without using clipboard or insertfile method?
Comments
Post a Comment