2012-06-05 3 views

답변

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); 
을 사용
관련 문제