ContentControl.XMLMapping 属性 (Word)
返回 XMLMapping 对象,该对象表示内容控件到文档的数据存储中的 XML 数据的映射。 只读。
语法
expression。 XMLMapping
表达 返回 ContentControl 对象的表达式。
示例
以下示例设置内置的“作者”文档属性,并向活动文档添加新内容控件,然后设置该控件到该内置文档属性的值的映射。
Dim objCC As ContentControl
Dim objMap As XMLMapping
Dim blnMap As Boolean
ActiveDocument.BuiltInDocumentProperties("Author").Value = "David Jaffe"
Set objCC = ActiveDocument.ContentControls.Add _
(wdContentControlText, ActiveDocument.Paragraphs(1).Range)
Set objMap = objCC.XMLMapping
blnMap = objMap.SetMapping(XPath:="/ns1:coreProperties[1]/ns0:creator[1]")
If blnMap = False Then
MsgBox "Unable to map the content control."
End If
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。