AutomationElement.IsKeyboardFocusableProperty 字段
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
标识 IsKeyboardFocusable 属性。
public: static initonly System::Windows::Automation::AutomationProperty ^ IsKeyboardFocusableProperty;
public static readonly System.Windows.Automation.AutomationProperty IsKeyboardFocusableProperty;
staticval mutable IsKeyboardFocusableProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly IsKeyboardFocusableProperty As AutomationProperty
字段值
示例
以下示例检索 属性的当前值。 如果 元素未提供默认值,则返回默认值。
bool isControlFocusable = (bool)
autoElement.GetCurrentPropertyValue(AutomationElement.IsKeyboardFocusableProperty);
Dim isControlFocusable As Boolean = _
CBool(autoElement.GetCurrentPropertyValue(AutomationElement.IsKeyboardFocusableProperty))
注解
此标识符由UI 自动化客户端应用程序使用。 UI 自动化提供程序应使用 中的AutomationElementIdentifiers等效标识符。
也可以从 Current 或 Cached 属性检索此属性。
属性提供方法正常运行 SetFocus 所需的信息。
属性的返回值的类型为 Boolean。 属性的默认值为 false
。