--- title: "How to: Determine Which Modifier Key Was Pressed" ms.date: "03/30/2017" dev_langs: - "csharp" - "vb" - "cpp" helpviewer_keywords: - "keyboard input" - "shift keys" - "events [Windows Forms], mouse" - "Keys.ControlKey enumeration member" - "keys [Windows Forms], control keys" - "user input [Windows Forms], checking for keyboard" - "keys [Windows Forms], determining last pressed" - "keys [Windows Forms], shift keys" - "keys [Windows Forms], modifier keys" - "control keys" - "keys [Windows Forms], alt keys" - "alt keys" - "Keys.Shift enumeration member" - "events [Windows Forms], keyboard" - "keyboards [Windows Forms], keyboard input" - "Keys.Alt enumeration member" - "modifier keys" ms.assetid: 1e184048-0ae3-4067-a200-d4ba31dbc2cb --- # How to: Determine Which Modifier Key Was Pressed When you create an application that accepts the user's keystrokes, you may also want to monitor for modifier keys such as the SHIFT, ALT, and CTRL keys. When a modifier key is pressed in combination with other keys, or with mouse clicks, your application can respond appropriately. For example, if the letter S is pressed, this may simply cause an "s" to appear on the screen, but if the keys CTRL+S are pressed, the current document may be saved. If you handle the event, the property of the received by the event handler specifies which modifier keys are pressed. Alternatively, the property of specifies the character that was pressed as well as any modifier keys combined with a bitwise OR. However, if you are handling the event or a mouse event, the event handler does not receive this information. In this case, you must use the property of the class. In either case, you must perform a bitwise AND of the appropriate value and the value you are testing. The enumeration offers variations of each modifier key, so it is important that you perform the bitwise AND with the correct value. For example, the SHIFT key is represented by , , and The correct value to test SHIFT as a modifier key is . Similarly, to test for CTRL and ALT as modifiers you should use the and values, respectively. > [!NOTE] > Visual Basic programmers can also access key information through the property ### To determine which modifier key was pressed - Use the bitwise `AND` operator with the property and a value of the enumeration to determine whether a particular modifier key is pressed. The following code example shows how to determine whether the SHIFT key is pressed within a event handler. [!code-cpp[System.Windows.Forms.DetermineModifierKey#5](~/samples/snippets/cpp/VS_Snippets_Winforms/System.Windows.Forms.DetermineModifierKey/cpp/form1.cpp#5)] [!code-csharp[System.Windows.Forms.DetermineModifierKey#5](~/samples/snippets/csharp/VS_Snippets_Winforms/System.Windows.Forms.DetermineModifierKey/CS/form1.cs#5)] [!code-vb[System.Windows.Forms.DetermineModifierKey#5](~/samples/snippets/visualbasic/VS_Snippets_Winforms/System.Windows.Forms.DetermineModifierKey/VB/form1.vb#5)] ## See also - - - [Keyboard Input in a Windows Forms Application](keyboard-input-in-a-windows-forms-application.md) - [How to: Determine If CapsLock is On in Visual Basic](/previous-versions/visualstudio/visual-studio-2010/9c9d1fz9(v=vs.100))