Copy the Contents to Clipboard!

B

Bilal Anjum

Hi All!
How can i copy the contents of Word document to memory and then paste
them in another document?

Regards,
Bilal Anjum
 
S

selim baþtürk

if you have a Word.Document object lets say named wordDoc

wordDoc.Content.Copy(); in C# copies it to the clipboard
 
Top