AvalonStudio.Controls.KeyExtensions.IsTriggerKey C# (CSharp) Method

IsTriggerKey() public static method

public static IsTriggerKey ( this key ) : bool
key this
return bool
        public static bool IsTriggerKey(this Key key)
        {
            bool result = false;

            if (!key.IsNavigationKey())
            {
                if (key >= Key.A && key <= Key.Z)
                {
                    result = true;
                }
            }

            return result;
        }