How do I specify the landscape orientation in DocConverter COM?
You can specify the page orientation by following ways, For Example, use the Portrait mode, Doc2PDFCOM.paperType = 9; Doc2PDFCOM.pageWidth = 300; Doc2PDFCOM.pageHeight= 600; For Example, use the landscape mode, Doc2PDFCOM.paperType = 9; Doc2PDFCOM.pageWidth = 600; Doc2PDFCOM.pageHeight= 300; You can swap the page width and page height to change the page orientation.