共用方式為


Office) (CustomXMLPart.Load 方法

可讓範本作者填入從現有檔案的 CustomXMLPart 。 如果成功載入會傳回 True

語法

運算式載入 (FilePath)

表達 會傳回 CustomXMLPart 物件的運算式。

參數

名稱 必要/選用 資料類型 描述
FilePath 必要 String 會指向使用者電腦或網路上含有要載入之 XML 的檔案。

傳回值

布林值

範例

下列範例會新增自訂的 XML 組件、使用檔案中的 XML 填入自訂的 XML 組件,然後處理該組件的節點。

Sub ShowCustomXmlParts() 
    On Error GoTo Err 
 
    Dim cxp1 As CustomXMLPart 
 
    With ActiveDocument 
        ' Example written for Word. 
 
        ' Add a custom XML part and then load the XML from a file. 
        Set cxp1 = .CustomXMLParts.Add 
        cxp1.Load "c:\invoice.xml" 
 
        Set cxn = cxp1.SelectSingleNode("//*[@quantity < 4]")  
        ' Insert a subtree before the single node selected previously. 
        cxn.InsertSubTreeBefore("<discounts><discount>0.10</discount></discounts>")   
               
        ' Delete custom XML part. 
        cxp1.Delete 
        cxn.Delete 
                 
    End With 
     
    Exit Sub 
                 
' Exception handling. Show the message and resume. 
Err: 
        MsgBox (Err.Description) 
        Resume Next 
End Sub

另請參閱

支援和意見反應

有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應