Shape.IsAccessible 属性

获取或设置一个 line 或 shape 控件是否的值对辅助功能的应用程序可用。

命名空间:  Microsoft.VisualBasic.PowerPacks
程序集:  Microsoft.VisualBasic.PowerPacks.Vs(在 Microsoft.VisualBasic.PowerPacks.Vs.dll 中)

语法

声明
<BrowsableAttribute(False)> _
Public Property IsAccessible As Boolean
[BrowsableAttribute(false)]
public bool IsAccessible { get; set; }
[BrowsableAttribute(false)]
public:
property bool IsAccessible {
    bool get ();
    void set (bool value);
}
[<BrowsableAttribute(false)>]
member IsAccessible : bool with get, set
function get IsAccessible () : boolean
function set IsAccessible (value : boolean)

属性值

类型:System.Boolean
true ,如果控件对辅助功能应用程序可用;否则, false。默认值为 true。

备注

将 line 或 shape 控件用于装饰目的时强使用,并且其 Enabled 属性设置为 false,您可能需要设置 IsAccessible 属性设置为 false 最大限度地减少辅助功能应用程序的效果。

示例

,如果该形状 Enabled 属性是 false,下面的示例将每个形状 IsAccessible 属性集合中的对 false 。

Private Sub SetAccessibility()
    ' Loop through the Shapes collection of the form.
    For Each s As Shape In ShapeContainer1.Shapes
        ' If the shape is disabled, set IsAccessible to false.
        If s.Enabled = False Then
            s.IsAccessible = False
        End If
    Next
End Sub
private void SetAccessibility()
{
    // Loop through the Shapes collection of the form.
    foreach (Shape s in shapeContainer1.Shapes)
    {
        // If the shape is disabled, set IsAccessible to false.
        if (s.Enabled == false)
        {
            s.IsAccessible = false;
        }
    }
}

.NET Framework 安全性

请参见

参考

Shape 类

Microsoft.VisualBasic.PowerPacks 命名空间

其他资源

如何:使用 LineShape 控件绘制直线 (Visual Studio)

如何:使用 OvalShape 和 RectangleShape 控件绘制形状 (Visual Studio)

Line 和 Shape 控件简介 (Visual Studio)