Table of Contents

Struct KeyboardToggleStatus

Namespace
Artemis.Core.Services
Assembly
Artemis.Core.dll

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

numLock bool

A boolean indicating whether num lock is on

capsLock bool

A boolean indicating whether caps lock is on

scrollLock bool

A boolean indicating whether scroll lock is on

Properties

CapsLock

Gets a boolean indicating whether caps lock is on

public bool CapsLock { get; }

Property Value

bool

NumLock

Gets a boolean indicating whether num lock is on

public bool NumLock { get; }

Property Value

bool

ScrollLock

Gets a boolean indicating whether scroll lock is on

public bool ScrollLock { get; }

Property Value

bool