1

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

4

1 回答 1

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);
于 2012-06-08T13:51:05.650 回答