Condividi tramite


Proprietà Shape.AccessibleDescription

Ottiene o imposta la descrizione del controllo utilizzato da applicazioni client per l'accessibilità.

Spazio dei nomi:  Microsoft.VisualBasic.PowerPacks
Assembly:  Microsoft.VisualBasic.PowerPacks.Vs (in Microsoft.VisualBasic.PowerPacks.Vs.dll)

Sintassi

'Dichiarazione
<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)

Valore proprietà

Tipo: System.String
In String che contiene la descrizione del controllo utilizzato da applicazioni client per l'accessibilità.l'impostazione predefinita è un riferimento Null (Nothing in Visual Basic).

Note

AccessibleDescription la proprietà fornisce una descrizione testuale dell'aspetto visivo di un oggetto.La descrizione viene utilizzata principalmente per fornire il migliore contesto per la visione basso o gli utenti non vedenti, ma può anche essere utilizzata per applicazioni di ricerca di contesto o altre.

AccessibleDescription la proprietà è necessaria se la descrizione non è ovvio, o se è ridondante basata su AccessibleName o AccessibleRole oggetto.Ad esempio, una forma che visualizza il testo “fa clic qui„ non richiede le informazioni aggiuntive, ma una forma che illustra un'immagine di un cactus.AccessibleName e AccessibleRole le proprietà della forma del cactus descriverebbero lo scopo, ma AccessibleDescription la proprietà comunicherebbe le informazioni che sono meno tangibili, ad esempio “una forma che illustra un'immagine di un cactus„.

Esempi

Nell'esempio seguente viene illustrato come impostare AccessibleName e AccessibleDescription proprietà di OvalShape controllare.Si supponga di avere aggiunto un file di immagine denominato “cactus„ come risorsa nel progetto.

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";

Sicurezza di .NET Framework

Vedere anche

Riferimenti

Shape Classe

Spazio dei nomi Microsoft.VisualBasic.PowerPacks

Altre risorse

Procedura: disegnare linee con il controllo LineShape (Visual Studio)

Procedura: disegnare forme con i controlli OvalShape e RectangleShape (Visual Studio)

Introduzione ai controlli Line e Shape (Visual Studio)