Partager via


Shape.CanSelect, propriété

Obtient une valeur indiquant si un contrôle Shape ou Line 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 with get
function get CanSelect () : boolean

Valeur de propriété

Type : 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 activé, et tous ses contrôles parents sont visibles et activés.

Pour empêcher un contrôle de sélection, définissez son Enabled propriété false.

Exemples

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

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)