I'm using the following code to create a word document from my c# application:
oWord = new Word.Application();
oDoc = oWord.Documents.Add(ref oMissing, ref oMissing, ref oMissing, ref oMissing);
oDoc.PageSetup.PaperSize = WdPaperSize.wdPaperLegal;
Is there a way I can specify (using c# code) the printing option
Zoom > "Scale to paper Size"
to be A4 whenever this document is printed?
Thanks in advance!