File: Input\VirtualKey.cs
Web Access
Project: ..\..\..\src\VisualStudio\IntegrationTest\TestUtilities\Microsoft.VisualStudio.IntegrationTest.Utilities.csproj (Microsoft.VisualStudio.IntegrationTest.Utilities)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
namespace Microsoft.VisualStudio.IntegrationTest.Utilities.Input
{
    public enum VirtualKey : byte
    {
        Enter = 0x0D,
        Tab = 0x09,
        Escape = 0x1B,
 
        PageUp = 0x21,
        PageDown = 0x22,
        End = 0x23,
        Home = 0x24,
        Left = 0x25,
        Up = 0x26,
        Right = 0x27,
        Down = 0x28,
 
        Shift = 0x10,
        Control = 0x11,
        Alt = 0x12,
 
        CapsLock = 0x14,
        NumLock = 0x90,
        ScrollLock = 0x91,
        PrintScreen = 0x2C,
        Break = 0x03,
        Help = 0x2F,
 
        Backspace = 0x08,
        Clear = 0x0C,
        Insert = 0x2D,
        Delete = 0x2E,
 
        Space = 0x20,
 
        F1 = 0x70,
        F2 = 0x71,
        F3 = 0x72,
        F4 = 0x73,
        F5 = 0x74,
        F6 = 0x75,
        F7 = 0x76,
        F8 = 0x77,
        F9 = 0x78,
        F10 = 0x79,
        F11 = 0x7A,
        F12 = 0x7B,
        F13 = 0x7C,
        F14 = 0x7D,
        F15 = 0x7E,
        F16 = 0x7F,
 
        A = 0x41,
        B = 0x42,
        C = 0x43,
        D = 0x44,
        E = 0x45,
        F = 0x46,
        G = 0x47,
        H = 0x48,
        I = 0x49,
        J = 0x4A,
        K = 0x4B,
        L = 0x4C,
        M = 0x4D,
        N = 0x4E,
        O = 0x4F,
        P = 0x50,
        Q = 0x51,
        R = 0x52,
        S = 0x53,
        T = 0x54,
        U = 0x55,
        V = 0x56,
        W = 0x57,
        X = 0x58,
        Y = 0x59,
        Z = 0x5A,
 
        Period = 0xBE,
 
        /// <summary>
        /// Used for miscellaneous characters; it can vary by keyboard.<br/>
        /// For the US standard keyboard, the '[{' key.
        /// </summary>
        VK_OEM_4 = 0xDB,
 
        /// <summary>
        /// Used for miscellaneous characters; it can vary by keyboard.<br/>
        /// For the US standard keyboard, the ']}' key.
        /// </summary>
        VK_OEM_6 = 0xDD,
    }
}