次の方法で共有


CustomXMLPart.Load メソッド (Office)

既存のファイルからの CustomXMLPart を設定するテンプレートの作成者を使用できます。 ロードが成功した場合は True を返します。

構文

Load (FilePath)

CustomXMLPart オブジェクトを返す式。

パラメーター

名前 必須 / オプション データ型 説明
FilePath 必須 String ロードする XML を含むユーザーのコンピューターのファイル、またはネットワーク上のファイルを示します。

戻り値

Boolean

次の例は、カスタム 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 のサポートおよびフィードバックを参照してください。