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 : KeysMembre Verr. maj, Verr. Num ou Arrêt défil de l'énumération Keys.
Valeur de retour
Type : 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 le IsKeyLocked propriété pour déterminer si les touches VERR. MAJ, VERR. NUM ou arrêt défil, individuellement ou conjointement.
Exemples
L'exemple suivant affiche un message qui indique si la clé spécifiée (la touche VERR dans ce cas) est en vigueur.
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, voir 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)