我想将文本从我的应用程序导出到 MS OneNote 并支持 Office 版本:2007、2010、2013 和 2016。我使用的是Microsoft.Office.Interop.OneNote.dll Version:12.0.
0,因为它随所有 Office 版本提供。
问题是当我尝试使用“CreateNewPage”在 Office 2013 上创建新的 OneNote 页面时,我遇到了异常:
hrSectionReadOnly 0x8004200b
该部分是只读的。
readOnly="true"
我可以看到我尝试更改的属性,但没有帮助。仍然得到同样的例外。
如果我参考Microsoft.Office.Interop.OneNote.dll Version:15.0.0
,那么一切正常。
任何想法为什么它是只读的,我该如何克服这个问题?
这是代码示例:
string strPath;
string sectionId;
string xml;
// points directly on OneNote's Unfiled section
_app.GetSpecialLocation(SpecialLocation.slUnfiledNotesSection, out strPath);
_app.OpenHierarchy(strPath, "", out sectionId, CreateFileType.cftSection);
_app.CreateNewPage(sectionId, out _sectionId, NewPageStyle.npsDefault);
var strImportXml = @"<?xml version='1.0' ?>
<one:Page xmlns:one='" + _oneNoteNamespace + "' ID='" + _sectionId + @"'>
<one:Title>
<one:OE>
<one:T>
<![CDATA[
]]>
</one:T>
</one:OE>
</one:Title>
<one:Outline>
<one:Meta name='Rumba' content='" + new Random().Next() + @"' />
<one:OEChildren>
<one:HTMLBlock>
<one:Data>
<![CDATA[My sample page]]>
</one:Data>
</one:HTMLBlock>
</one:OEChildren>
</one:Outline>
</one:Page>";
_app.UpdatePageContent(strImportXml, DateTime.MinValue);
_app.NavigateTo(_sectionId, String.Empty, true);