![c#](https://habrastorage.org/r/w120/webt/5a/de/18/5ade18911a778864474783.png)
C#
10
Вклад в тег
Word.Application application = new Word.Application();
Object missing = Type.Missing;
application.Documents.Add(ref missing, ref missing, ref missing, ref missing);
Clipboard.SetImage(pictureBox1.Image);
application.ActiveDocument.Paragraphs[1].Range.Paste();
application.Visible = true;