我需要一种以编程方式将OneNote节文件(.one)转换为XPS格式的方法。我知道Excel和Word是如何工作的,但Interop.OneNote
是不同的。任何解决方案?
非常感谢。
答案 0 :(得分:0)
您可以使用Publish
函数(http://msdn.microsoft.com/en-us/library/gg649853.aspx),例如:
using Microsoft.Office.Interop.Onenote;
...
Application onApp = new Application();
string sectionid = "your section id here..."; //could also be a page or notebook id
string path = "your filepath here..."; //e.g. C:\Users\MyUsername\Documents\hi.xps
onApp.Publish(sectionid, path, PublishFormat.pfXPS);