AutomationElement.RuntimeIdProperty 字段

定义

标识包含元素的运行时标识符的属性。

public: static initonly System::Windows::Automation::AutomationProperty ^ RuntimeIdProperty;
public static readonly System.Windows.Automation.AutomationProperty RuntimeIdProperty;
 staticval mutable RuntimeIdProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly RuntimeIdProperty As AutomationProperty 

字段值

AutomationProperty

示例

以下示例检索属性的当前值。

int[] runtimeIdentifier = (int[])
    autoElement.GetCurrentPropertyValue(AutomationElement.RuntimeIdProperty);
Dim runtimeIdentifier As Integer() = _
    CType(autoElement.GetCurrentPropertyValue(AutomationElement.RuntimeIdProperty), Integer())

注解

此标识符由UI 自动化客户端应用程序使用。 UI 自动化提供程序应使用等效标识符。AutomationElementIdentifiers

运行时 ID 属性指定桌面上唯一的 AutomationElement ID。

属性的返回值是类型的 Int32数组。 无默认值。

适用于

另请参阅