我正在关注此Edraw Link。
我能够使用此LINK搜索我的一个问题。
我的代码现在是
With AxEDOffice1
.PrintOut(EDOfficeLib.WdPrintOutRange.wdPrintRangeOfPages, 1, 1, "", 2)
// from page , to page , (Page as Object) this one is don't know how to use, number of copies //
End With
//This one is for next page but its not working. I print preview first and click a button using code below.
With AxEDOffice1
.SlideGotoNext()
End With
我的问题
Print Preview it?
.PrintOut(EDOfficeLib.WdPrintOutRange.wdPrintCurrentPage)
)但问题是如何导航到下一页/上一页。答案 0 :(得分:4)
Edraw库是使用 Microsoft.Office.Interop.Word 库构建的,因此PrintOut方法与找到的Here相同(上面的 MSDN文章对您的案例非常有用< / em>的)
旁注:为了获得更多的关注,在Microsoft.Office.Interop.Word上询问时,不要再问关于Edraw了,因为它被很多人使用并且得到了microsoft的支持。
使用AxEDOffice1.ActiveDocument.PrintOut
方法
要指定打印范围,您必须选择EDOfficeLib.WdPrintOutRange.wdPrintFromTo
选项并指定From
和To
参数。 (开始页面和结束页面)
这些参考资料也可以帮助您:
希望我帮助