AutomationElement.RuntimeIdProperty 字段
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
标识包含元素的运行时标识符的属性。
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
字段值
示例
以下示例检索属性的当前值。
int[] runtimeIdentifier = (int[])
autoElement.GetCurrentPropertyValue(AutomationElement.RuntimeIdProperty);
Dim runtimeIdentifier As Integer() = _
CType(autoElement.GetCurrentPropertyValue(AutomationElement.RuntimeIdProperty), Integer())
注解
此标识符由UI 自动化客户端应用程序使用。 UI 自动化提供程序应使用等效标识符。AutomationElementIdentifiers
运行时 ID 属性指定桌面上唯一的 AutomationElement ID。
属性的返回值是类型的 Int32数组。 无默认值。