Click or drag to resize

KeyModifiers Enumeration

Note: This API is now obsolete.

Flags to specify key modifiers combination.

Namespace:  KSPDev.InputUtils
Assembly:  KSPDev_Utils.2.5 (in KSPDev_Utils.2.5.dll) Version: 2.5 for KSP v1
Syntax
C#
[FlagsAttribute]
[ObsoleteAttribute("This class will soon be deprecated. Use CheckAnySymmetricalModifiers().")]
public enum KeyModifiers
Members
  Member nameValueDescription
None0No modifier keys are pressed.
AnyAlt1Left or right ALT key pressed.
AnyShift2Left or right SHIFT key pressed.
AnyControl4Left or right CONTROL key pressed.
Remarks
Modifiers can be joined to get a combination. E.g. AnyAlt | AnyShift.
See Also