Keyboard.AltKeyDown Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient une valeur qui indique si la touche ALT est enfoncée.
public:
property bool AltKeyDown { bool get(); };
public bool AltKeyDown { get; }
member this.AltKeyDown : bool
Public ReadOnly Property AltKeyDown As Boolean
Valeur de propriété
True
si la touche ALT est arrêtée ; sinon, False
.
Exemples
Cet exemple utilise la My.Computer.Keyboard.AltKeyDown
propriété pour déterminer si la clé ALT de l’ordinateur est en panne.
If My.Computer.Keyboard.AltKeyDown Then
MsgBox("ALT key down")
Else
MsgBox("ALT key up")
End If
Remarques
La My.Computer.Keyboard.AltKeyDown
propriété fournit des fonctionnalités similaires à la ModifierKeys propriété .
Disponibilité par type de projet
Type de projet | Disponible |
---|---|
Application Windows | Oui |
Bibliothèque de classes | Oui |
Application console | Oui |
Bibliothèque de contrôles Windows | Oui |
Bibliothèque de contrôles web | Non |
Service Windows | Oui |
Site web | Non |