Struct KeyboardToggleStatus
Represents the status of a keyboards special toggles
public readonly struct KeyboardToggleStatus
- Inherited Members
Constructors
KeyboardToggleStatus(bool, bool, bool)
Creates a new KeyboardToggleStatus
public KeyboardToggleStatus(bool numLock, bool capsLock, bool scrollLock)
Parameters
numLockboolA boolean indicating whether num lock is on
capsLockboolA boolean indicating whether caps lock is on
scrollLockboolA boolean indicating whether scroll lock is on
Properties
CapsLock
Gets a boolean indicating whether caps lock is on
public bool CapsLock { get; }
Property Value
NumLock
Gets a boolean indicating whether num lock is on
public bool NumLock { get; }
Property Value
ScrollLock
Gets a boolean indicating whether scroll lock is on
public bool ScrollLock { get; }