次の方法で共有


XMLMapping.CustomXMLPart プロパティ

定義

ドキュメント内のコンテンツ コントロールをマップするカスタム XML 部分を表す CustomXMLPart オブジェクトを返します。

public:
 property Microsoft::Office::Core::CustomXMLPart ^ CustomXMLPart { Microsoft::Office::Core::CustomXMLPart ^ get(); };
public Microsoft.Office.Core.CustomXMLPart CustomXMLPart { get; }
member this.CustomXMLPart : Microsoft.Office.Core.CustomXMLPart
Public ReadOnly Property CustomXMLPart As CustomXMLPart

プロパティ値

次の使用例は、作業中の文書の最初のコンテンツ コントロールと、そのコンテンツ コントロールがマップされるカスタム XML 部分にアクセスし、カスタム XML 部分に含まれているいずれかの XML ノードの文字列値を設定します。

: この例では、作業中の文書内の少なくとも 1 つのコンテンツ コントロールが、XPath 文字列で指定された XML ノードを含むカスタム XML パーツにマップされていることを前提としています。

<span class="label">Dim objCC As ContentControl































































































































Dim objPart As CustomXMLPart































































































































Dim objNode As CustomXMLNode































































































































































































































































Set objCC = ActiveDocument.ContentControls(1)































































































































Set objPart = objCC.XMLMapping.</span>
<span class="label">CustomXMLPart</span>
<span class="label">Set objNode = objPart.SelectSingleNode("/books/book/title")objNode.Text = "Mystery of the Empty Chair"</span>

適用対象