Partager via


Shape.CanSelect, propriété

Obtient une valeur indiquant si un contrôle Line ou Shape peut être sélectionné.

Espace de noms :  Microsoft.VisualBasic.PowerPacks
Assembly :  Microsoft.VisualBasic.PowerPacks.Vs (dans Microsoft.VisualBasic.PowerPacks.Vs.dll)

Syntaxe

'Déclaration
<BrowsableAttribute(False)> _
Public ReadOnly Property CanSelect As Boolean
[BrowsableAttribute(false)]
public bool CanSelect { get; }
[BrowsableAttribute(false)]
public:
property bool CanSelect {
    bool get ();
}
[<BrowsableAttribute(false)>]
member CanSelect : bool
function get CanSelect () : boolean

Valeur de propriété

Type : System.Boolean
true si le contrôle peut être sélectionné ; sinon, false.La valeur par défaut est true.

Notes

Cette propriété retourne true si le contrôle lui-même est visible et actif, et tous ses contrôles parents sont visibles et actifs.

Pour empêcher un contrôle individuel d'être sélectionné, définissez sa propriété d'Enabled à false.

Exemples

L'exemple suivant sélectionne Shape spécifié, s'il peut être sélectionné.

Public Sub SelectShape(ByVal shape As Microsoft.VisualBasic.PowerPacks.Shape)
    ' Select the control, if it can be selected.
    If shape.CanSelect Then
        shape.Select()
    End If
End Sub
public void SelectShape(Microsoft.VisualBasic.PowerPacks.Shape shape)
{
    // Select the control, if it can be selected.
    if (shape.CanSelect)
    {
        shape.Select();
    }
}

Sécurité .NET Framework

Voir aussi

Référence

Shape Classe

Microsoft.VisualBasic.PowerPacks, espace de noms

Autres ressources

Comment : dessiner des lignes avec le contrôle LineShape (Visual Studio)

Comment : dessiner des formes avec les contrôles OvalShape et RectangleShape (Visual Studio)

Introduction aux contrôles Line et Shape (Visual Studio)