Shape.AccessibleDescription プロパティ
ユーザー補助クライアント アプリケーションによって使用される、コントロールの説明を取得または設定します。
名前空間: Microsoft.VisualBasic.PowerPacks
アセンブリ: Microsoft.VisualBasic.PowerPacks.Vs (Microsoft.VisualBasic.PowerPacks.Vs.dll 内)
構文
'宣言
<BrowsableAttribute(True)> _
Public Property AccessibleDescription As String
[BrowsableAttribute(true)]
public string AccessibleDescription { get; set; }
[BrowsableAttribute(true)]
public:
property String^ AccessibleDescription {
String^ get ();
void set (String^ value);
}
[<BrowsableAttribute(true)>]
member AccessibleDescription : string with get, set
function get AccessibleDescription () : String
function set AccessibleDescription (value : String)
プロパティ値
型 : String
AStringユーザー補助クライアント アプリケーションで使用するコントロールの説明を表します。The default is a null reference (Nothing in Visual Basic).
解説
AccessibleDescriptionプロパティは、オブジェクトの視覚的な外観の説明テキストを提供します。 説明が視覚または視覚障害のあるユーザーより適切なコンテキストを提供する、主に使用されますが、コンテキスト検索やその他のアプリケーションを使用することもできます。
AccessibleDescriptionプロパティが、説明が推測、できない場合に必要なまたは冗長である場合に基づく、AccessibleNameまたはAccessibleRoleオブジェクトのです。 たとえば、図形、テキスト"Click here"を表示する必要がないため、追加の情報が、図形、サボテンの画像を表示するは。 AccessibleNameとAccessibleRoleサボテン図形のプロパティを記述して、その目的が、AccessibleDescriptionプロパティが「を示す、サボテンの図形」など、実体があまりないされる情報を通信。
例
次の例を設定する方法を示しています、AccessibleNameとAccessibleDescriptionのプロパティをOvalShapeコントロールです。 プロジェクトにリソースとして「サボテン」という名前の画像ファイルを追加することを想定しています。
Dim OvalShape1 As New OvalShape
Dim canvas As New ShapeContainer
' Set the form as the parent of the ShapeContainer.
canvas.Parent = Me
' Set the ShapeContainer as the parent of the OvalShape.
OvalShape1.Parent = canvas
' Assign an image resource to the BackgroundImage property.
OvalShape1.BackgroundImage = My.Resources.cactus
OvalShape1.Size = New Size(My.Resources.cactus.Size)
' Assign the AccessibleName and AccessibleDescription text.
OvalShape1.AccessibleName = "Image"
OvalShape1.AccessibleDescription = "A picture of a cactus"
OvalShape OvalShape1 = new OvalShape();
ShapeContainer canvas = new ShapeContainer();
// Set the form as the parent of the ShapeContainer.
canvas.Parent = this;
// Set the ShapeContainer as the parent of the OvalShape.
OvalShape1.Parent = canvas;
// Assign an image resource to the BackgroundImage property.
OvalShape1.BackgroundImage = VbPowerPacksShapeAccessibleCS.Properties.Resources.cactus;
OvalShape1.Size = new Size(VbPowerPacksShapeAccessibleCS.Properties.Resources.cactus.Height,
VbPowerPacksShapeAccessibleCS.Properties.Resources.cactus.Width);
// Assign the AccessibleName and AccessibleDescription text.
OvalShape1.AccessibleName = "Image";
OvalShape1.AccessibleDescription = "A picture of a cactus";
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。
参照
関連項目
Microsoft.VisualBasic.PowerPacks 名前空間
その他の技術情報
方法 : LineShape コントロールを使用して線を描画する (Visual Studio)
方法 : OvalShape コントロールおよび RectangleShape コントロールを使用して図形を描画する (Visual Studio)