Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Struct: RT.Util.ModifierKeysState

Summary

Encapsulates the current state of modifier keys.

Constructors

ModifierKeysState(bool ctrl = false, bool alt = false, bool shift = false, bool win = false)
Constructor.

Instance methods

bool
Equals(object obj)
  • Overrides: object.Equals(object)
Override; see base.
int
  • Overrides: object.GetHashCode()

Operators

boolCompares the modifiers and returns true iff the two are equal.
boolCompares the modifiers and returns true iff the two are not equal.

Instance properties

boolGets the state of the Alt key (true if left OR right is down).
boolGets the state of the Control key (true if left OR right is down).
boolGets the state of the Shift key (true if left OR right is down).
boolGets the state of the Windows key (true if left OR right is down).