Control.AccessibleDefaultActionDescription プロパティ
定義
アクセシビリティ クライアント アプリケーションで使用されるコントロールの既定のアクションの説明を取得または設定します。Gets or sets the default action description of the control for use by accessibility client applications.
public:
property System::String ^ AccessibleDefaultActionDescription { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Browsable(false)]
public string AccessibleDefaultActionDescription { get; set; }
member this.AccessibleDefaultActionDescription : string with get, set
Public Property AccessibleDefaultActionDescription As String
プロパティ値
ユーザー補助クライアント アプリケーションによって使用される、コントロールの既定のアクションの説明。The default action description of the control for use by accessibility client applications.
- 属性
注釈
オブジェクトの AccessibleDefaultActionDescription プロパティは、ユーザーの視点からの操作のオブジェクトの主要なメソッドを記述します。An object's AccessibleDefaultActionDescription property describes the object's primary method of manipulation from the user's viewpoint. このプロパティは動詞または短い動詞句である必要があります。This property should be a verb or a short verb phrase.
注意
すべてのオブジェクトに既定のアクションがあるわけではありません。また、次の例のように、一部のオブジェクトには、AccessibleObject.Value プロパティに関連する既定のアクションがある場合があります。Not all objects have default actions, and some objects might have a default action that is related to its AccessibleObject.Value property, such as in the following examples:
チェックボックスをオンにすると、既定のアクションである "チェックの解除" と "Checked" の値が設定されます。A selected check box has a default action of "Uncheck" and a value of "Checked."
チェックボックスがオフの場合、既定のアクションは "Check" で、値は "Unchecked" になります。A cleared check box has a default action of "Check" and a value of "Unchecked."
"Print" というラベルが付いたボタンには、値のない "Press" という既定のアクションがあります。A button labeled "Print" has a default action of "Press," with no value.
"Printer" と表示されるラベルまたはテキストボックスコントロールには、既定の動作はありませんが、"Printer" という値が設定されます。A label or a text box control that shows "Printer" has no default action, but would have a value of "Printer."
ユーザー補助オブジェクトのプロパティの詳細については、「説明プロパティの内容」を参照してください。For more information about properties of accessible objects, see Content of Descriptive Properties.