DataDOMEvent.MatchExpression 属性

定义

获取 XML 文档对象模型 (DOM) 节点(当前正在为其处理事件)的 XPath 表达式。

public:
 property System::String ^ MatchExpression { System::String ^ get(); };
public string MatchExpression { get; }
member this.MatchExpression : string
Public ReadOnly Property MatchExpression As String

属性值

示例

在以下示例中,对象的 MatchExpression 属性 DataDOMEventObject 用于显示当前正在验证的 XML DOM 节点的 XPath 表达式:

thisXDocument.UI.Alert("Match expression: " + e.<span class="label">MatchExpression</span>);

注解

MatchExpression 属性包含的 XPath 表达式指向表单所基于的 XML 文档中的 XML DOM 节点。 该节点为当前正由数据验证事件处理程序进行验证的节点。

适用于