Office) (CustomXMLPart.SelectSingleNode 方法
會在自訂 XML 組件中選取符合 XPath 運算式的單一節點。
語法
運算式。SelectSingleNode (XPath)
表達 會傳回 CustomXMLPart 物件的運算式。
參數
名稱 | 必要/選用 | 資料類型 | 描述 |
---|---|---|---|
XPath | 必要 | String | 含有 XPath 運算式。 |
傳回值
CustomXMLNode
範例
下列範例會示範如何新增自訂 XML 組件、選取具有命名空間 URI 的組件,然後在該組件內選取符合 XPath 運算式的節點。
Dim cxp1 As CustomXMLPart
Dim cxn As CustomXMLNode
' Add a custom XML part.
ActiveDocument.CustomXMLParts.Add ( _
"<suppliers>" & _
"<supplier ID='1'>Contoso</supplier>" & _
"<supplier ID='2'>Wingtip Toys</supplier>" & _
"</suppliers>")
' Return the last custom XML part added to the document.
Set cxp1 = ActiveDocument.CustomXMLParts(ActiveDocument.CustomXMLParts.Count)
' Get a node using XPath.
Set cxn = cxp1.SelectSingleNode("//supplier[@ID=1]")
' Display the node value 'Contoso'.
MsgBox cxn.NodeValue
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。