ComponentFactory.Krypton.Docking.PI.IsKeyToggled C# (CSharp) Method

IsKeyToggled() public static method

Is the specified key currently toggled.
public static IsKeyToggled ( Keys key ) : bool
key Keys Key to test.
return bool
        public static bool IsKeyToggled(Keys key)
        {
            return KEY_TOGGLED == (GetKeyState(key) & KEY_TOGGLED);
        }