Shape.IsKeyLocked, méthode
Détermine si la touche Verr. maj, Verr. Num ou Arrêt défil est activée.
Espace de noms : Microsoft.VisualBasic.PowerPacks
Assembly : Microsoft.VisualBasic.PowerPacks.Vs (dans Microsoft.VisualBasic.PowerPacks.Vs.dll)
Syntaxe
'Déclaration
Public Shared Function IsKeyLocked ( _
keyVal As Keys _
) As Boolean
public static bool IsKeyLocked(
Keys keyVal
)
public:
static bool IsKeyLocked(
Keys keyVal
)
static member IsKeyLocked :
keyVal:Keys -> bool
public static function IsKeyLocked(
keyVal : Keys
) : boolean
Paramètres
- keyVal
Type : System.Windows.Forms.Keys
Membre Verr. maj, Verr. Num ou Arrêt défil de l'énumération Keys.
Valeur de retour
Type : System.Boolean
true si la ou les touches spécifiées sont activées ; sinon, false.
Exceptions
Exception | Condition |
---|---|
NotSupportedException | Le paramètre keyVal fait référence à une touche autre que Verr. maj, Verr. Num ou Arrêt défil. |
Notes
Utilisez la propriété d'IsKeyLocked pour déterminer si la TOUCHE VERR, le NUM, ou les touches Arrêt défil sont sur, individuellement ou en association.
Exemples
L'exemple suivant affiche un message indiquant si la clé spécifiée (le touche Verr. maj dans ce cas) est appliquée.
Private Sub GetCapsLocked(ByVal shape As Shape)
' You can test for the CAPS LOCK, NUM LOCK, OR SCROLL LOCK key
' by changing the value of Keys.
If shape.IsKeyLocked(Keys.CapsLock) Then
MsgBox("The Caps Lock key is ON.")
Else
MsgBox("The Caps Lock key is OFF.")
End If
End Sub
private void GetCapsLocked(Shape shape)
{
// You can test for the CAPS LOCK, NUM LOCK, OR SCROLL LOCK key
// by changing the value of Keys.
if (Shape.IsKeyLocked(Keys.CapsLock))
{
MessageBox.Show("The Caps Lock key is ON.");
}
else
{
MessageBox.Show("The Caps Lock key is OFF.");
}
}
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, consultez Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.
Voir aussi
Référence
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)