AutomationElement.AccessKeyProperty フィールド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
AccessKey プロパティを識別します。
public: static initonly System::Windows::Automation::AutomationProperty ^ AccessKeyProperty;
public static readonly System.Windows.Automation.AutomationProperty AccessKeyProperty;
staticval mutable AccessKeyProperty : System.Windows.Automation.AutomationProperty
Public Shared ReadOnly AccessKeyProperty As AutomationProperty
フィールド値
例
次の例では、 プロパティの現在の値を取得します。 要素に指定されていない場合は、既定値が返されます。
string accessKey =
autoElement.GetCurrentPropertyValue(AutomationElement.AccessKeyProperty) as string;
Dim accessKey As String = _
CStr(autoElement.GetCurrentPropertyValue(AutomationElement.AccessKeyProperty))
次の例では、 プロパティの現在の値を取得しますが、要素自体がプロパティの値を提供しない場合は、 NotSupported 既定値ではなく を返すように指定します。
string accessKeyString;
object accessKeyNoDefault =
autoElement.GetCurrentPropertyValue(AutomationElement.AccessKeyProperty, true);
if (accessKeyNoDefault == AutomationElement.NotSupported)
{
// TODO Handle the case where you do not wish to proceed using the default value.
}
else
{
accessKeyString = accessKeyNoDefault as string;
}
Dim accessKeyString As String
Dim accessKeyNoDefault As Object = autoElement.GetCurrentPropertyValue(AutomationElement.AccessKeyProperty, True)
If accessKeyNoDefault Is AutomationElement.NotSupported Then
' TODO Handle the case where you do not wish to proceed using the default value.
Else
accessKeyString = CStr(accessKeyNoDefault)
End If
注釈
この識別子は、UI オートメーション クライアント アプリケーションで使用されます。 UI オートメーション プロバイダーでは、 で AutomationElementIdentifiers同等の識別子を使用する必要があります。
このプロパティは、 または Cached プロパティからCurrent取得することもできます。
アクセス キーは、メニュー、メニュー項目、またはコントロールのラベル (添付されたメニュー機能をアクティブにするボタンなど) のテキスト内の文字です。 たとえば、文字 "O" は、多くの場合、[ファイル] メニューから [ファイルを開く] 共通ダイアログ ボックスを呼び出すために使用されます。
アクセス キーの値は 型 String であり、 要素のアクセス キーとして登録されている文字を含みます。 文字列の既定値は空の文字列です。
適用対象
こちらもご覧ください
.NET