Click or drag to resize

InputCodeExt Class

[This is preliminary documentation and is subject to change.]

Several utility methods and constants for InputCode.
Inheritance Hierarchy
SystemObject
  RavingBots.MultiInputInputCodeExt

Namespace:  RavingBots.MultiInput
Assembly:  RavingBots.MultiInput (in RavingBots.MultiInput.dll) Version: 0.12
Syntax
C#
public static class InputCodeExt

The InputCodeExt type exposes the following members.

Methods
  NameDescription
Public methodStatic memberIsGamepad
Returns true if given InputCode is a gamepad code.
Public methodStatic memberIsKeyboard
Returns true if given InputCode is a keyboard code.
Public methodStatic memberIsMouse
Returns true if given InputCode is a mouse code.
Top
Fields
  NameDescription
Public fieldStatic memberKeyboardCustomRangeStart
The start of reserved subrange of keyboard codes. This is the first value you can use for your custom codes.
Public fieldStatic memberKeyboardRangeEnd
The end of the keyboard code range (inclusive).
Public fieldStatic memberKeyboardRangeStart
The start of the keyboard code range. The range extends to KeyboardRangeEnd (inclusive).
Public fieldStatic memberMouseCustomRangeStart
The start of reserved subrange of mouse codes. This is the first value you can use for your custom codes.
Public fieldStatic memberMouseRangeEnd
The end of the mouse code range (inclusive).
Public fieldStatic memberMouseRangeStart
The start of the mouse code range. The range extends to MouseRangeEnd (inclusive).
Public fieldStatic memberPadCustomRangeStart
The start of reserved subrange of gamepad codes. This is the first value you can use for your custom codes.
Public fieldStatic memberPadRangeEnd
The end of the gamepad code range (inclusive).
Public fieldStatic memberPadRangeStart
The start of the gamepad code range. The range extends to PadRangeEnd (inclusive).
Top
Thread Safety
Static members of this type are safe for multi-threaded operations. Instance members of this type are safe for multi-threaded operations.
See Also