以编程方式将OneNote部分转换为XPS

时间:2012-06-05 04:59:17

标签: xps onenote

我需要一种以编程方式将OneNote节文件(.one)转换为XPS格式的方法。我知道Excel和Word是如何工作的,但Interop.OneNote是不同的。任何解决方案?

非常感谢。

1 个答案:

答案 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);