DataDOMEvent.MatchExpression 属性
获取 XML 文档对象模型 (DOM) 节点(当前正在为其处理事件)的 XPath 表达式。
命名空间: Microsoft.Office.Interop.InfoPath.SemiTrust
程序集: Microsoft.Office.Interop.InfoPath.SemiTrust(位于 Microsoft.Office.Interop.InfoPath.SemiTrust.dll 中)
语法
声明
ReadOnly Property MatchExpression As String
Get
用法
Dim instance As DataDOMEvent
Dim value As String
value = instance.MatchExpression
string MatchExpression { get; }
属性值
备注
MatchExpression 属性包含的 XPath 表达式指向表单所基于的 XML 文档中的 XML DOM 节点。该节点为当前正由数据验证事件处理程序进行验证的节点。
重要
可以无限制访问此成员。
示例
下列示例使用 DataDOMEventObject 对象的 MatchExpression 属性显示当前正在进行验证的 XML DOM 节点的 XPath 表达式:
thisXDocument.UI.Alert("Match expression: " + e.MatchExpression);