AutomationElement.HasKeyboardFocusProperty フィールド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
HasKeyboardFocus プロパティを識別します。
public: static initonly System::Windows::Automation::AutomationProperty ^ HasKeyboardFocusProperty;
public static readonly System.Windows.Automation.AutomationProperty HasKeyboardFocusProperty;
staticval mutable HasKeyboardFocusProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly HasKeyboardFocusProperty As AutomationProperty
フィールド値
例
次の例では、プロパティの現在の値を取得します。 要素に値が指定されていない場合は、既定値が返されます。
bool hasFocus = (bool)
autoElement.GetCurrentPropertyValue(AutomationElement.HasKeyboardFocusProperty);
Dim hasFocus As Boolean = CBool(autoElement.GetCurrentPropertyValue(AutomationElement.HasKeyboardFocusProperty))
注釈
この識別子は、クライアント アプリケーションUI オートメーション使用されます。 UI オートメーション プロバイダーでは、同等の識別子AutomationElementIdentifiersを使用する必要があります。
このプロパティは、プロパティCachedからCurrent取得することもできます。
プロパティの戻り値は型 Booleanです。 プロパティの既定値は false
.