VisioForge (c) 2025

Search Results for

    Class GlobalKeyboardHookEventArgs

    Class GlobalKeyboardHookEventArgs.

    Inheritance
    object
    EventArgs
    HandledEventArgs
    GlobalKeyboardHookEventArgs
    Inherited Members
    HandledEventArgs.Handled
    EventArgs.Empty
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: VisioForge.Core.UI.WinForms.Dialogs
    Assembly: VisioForge.Core.dll
    Syntax
    public class GlobalKeyboardHookEventArgs : HandledEventArgs

    Constructors

    GlobalKeyboardHookEventArgs(LowLevelKeyboardInputEvent, KeyboardState)

    Initializes a new instance of the GlobalKeyboardHookEventArgs class.

    Declaration
    public GlobalKeyboardHookEventArgs(GlobalKeyboardHook.LowLevelKeyboardInputEvent keyboardData, GlobalKeyboardHook.KeyboardState keyboardState)
    Parameters
    Type Name Description
    GlobalKeyboardHook.LowLevelKeyboardInputEvent keyboardData

    The keyboard data.

    GlobalKeyboardHook.KeyboardState keyboardState

    State of the keyboard.

    Properties

    Ctrl

    Gets or sets a value indicating whether Ctrl is pressed.

    Declaration
    public bool Ctrl { get; set; }
    Property Value
    Type Description
    bool

    true if control; otherwise, false.

    KeyboardData

    Gets the keyboard data.

    Declaration
    public GlobalKeyboardHook.LowLevelKeyboardInputEvent KeyboardData { get; }
    Property Value
    Type Description
    GlobalKeyboardHook.LowLevelKeyboardInputEvent

    The keyboard data.

    KeyboardState

    Gets the state of the keyboard.

    Declaration
    public GlobalKeyboardHook.KeyboardState KeyboardState { get; }
    Property Value
    Type Description
    GlobalKeyboardHook.KeyboardState

    The state of the keyboard.

    Shift

    Gets or sets a value indicating whether Shift is pressed.

    Declaration
    public bool Shift { get; set; }
    Property Value
    Type Description
    bool

    true if shift; otherwise, false.