Office) (CustomXMLPart.LoadXML 方法
可讓範本作者填入以 XML 字串的 CustomXMLPart 物件。 如果成功載入會傳回 True 。
語法
運算式。LoadXML (XML)
表達 會傳回 CustomXMLPart 物件的運算式。
參數
名稱 | 必要/選用 | 資料類型 | 描述 |
---|---|---|---|
XML | 必要 | String | 含有要載入的 XML。 |
傳回值
布林值
範例
下列範例會從字串在自訂 XML 組件中載入 XML。
Sub ShowCustomXmlParts()
On Error GoTo Err
Dim cxp1 As CustomXMLPart
' Add a custom XML part and then load the XML.
Set cxp1 = ActiveDocument.CustomXMLParts.Add
cxp1.LoadXML("<discounts><discount>0.10</discount></discounts>")
Exit Sub
' Exception handling. Show the message and resume.
Err:
MsgBox (Err.Description)
Resume Next
End Sub
另請參閱
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。