我设法在我的 OneNote 笔记本中非常特定的位置创建了部分。现在我想用页面实现同样的效果。因此,我没有使用不可预测的“CreateNewPage”方法,而是使用了 UpdateHierarchy,它工作得非常好(出于测试目的,我在下面使用 AppendChild)。
我遇到的唯一问题是,在使用 UpdateHierarchy 创建新页面后,我完全失去了指向新创建页面的任何链接。OneNote 分配一个 ID 并忽略我提供的所有其他标签/名称。设置用于设置标题的 One:T 成员也被忽略 - 它总是创建一个“无标题页面”。
我做错了什么还是我需要先 CreateNewPage 并使用分配的页面 ID 使用 UpdateHierarchy 重新放置它?
问候乔尔
function createPage {
param([string]$title, [string]$sectionnode)
[string]$pageref=$null
# Gather the pages within the notebook
[xml]$ref = $null
$_globalOneNote["COM"].GetHierarchy($sectionnode, [Microsoft.Office.InterOp.OneNote.HierarchyScope]::hsPages, [ref]$ref)
[System.Xml.XmlNamespaceManager] $nsmgr = $ref.NameTable
$nsmgr.AddNamespace('one', "http://schemas.microsoft.com/office/onenote/2010/onenote")
# Creation of a new page
$newPage = $ref.CreateElement('one', 'Page', 'http://schemas.microsoft.com/office/onenote/2010/onenote')
$newTitle = $ref.CreateElement('one', 'Title', 'http://schemas.microsoft.com/office/onenote/2010/onenote')
$newOE = $ref.CreateElement('one', 'OE', 'http://schemas.microsoft.com/office/onenote/2010/onenote')
$newT = $ref.CreateElement('one', 'T', 'http://schemas.microsoft.com/office/onenote/2010/onenote')
$newPage.SetAttribute('name', "Olololo")
$newT.InnerText = '<![CDATA[Testtitle]]>'
$newOE.AppendChild($newT)
$newTitle.AppendChild($newOE)
$newPage.AppendChild($newTitle)
$ref.Section.AppendChild($newPage)
$_globalBJBOneNote["COM"].UpdateHierarchy($ref.OuterXML)
}