C
CodeMann
I am using the Interop.Word object library in Visual C#.
I am pasting the ActiveWindow into a Word doc as follows:
Word.Application word = new Word.Application();
word.Documents.Add(ref missing, ref missing,ref missing,ref missing);
word.Application.Selection.Paste();
I want to be able to change the height and width of the picture object
programmatically.
I can manually right-click on the picture and choose "Format Picture",
select the "Size" tab and modify the Height and Width properties of the
picture.
However, how can I do this via the Word object in C#?
Thank you.
I am pasting the ActiveWindow into a Word doc as follows:
Word.Application word = new Word.Application();
word.Documents.Add(ref missing, ref missing,ref missing,ref missing);
word.Application.Selection.Paste();
I want to be able to change the height and width of the picture object
programmatically.
I can manually right-click on the picture and choose "Format Picture",
select the "Size" tab and modify the Height and Width properties of the
picture.
However, how can I do this via the Word object in C#?
Thank you.