CONST_DINPUT
The CONST_DINPUT enumeration contains various constants that are used throughout DirectInput.
Enum CONST_DINPUT
DIPROPAXISMODE_ABS = 0
DIPROPAXISMODE_REL = 1
DIPROPCALIBRATIONMODE_COOKED = 0
DIPROPCALIBRATIONMODE_RAW = 1
DIPROPRANGE_NOMAX = 2147483647 (&H7FFFFFFF)
DIPROPRANGE_NOMIN = -2147483648 (&H80000000)
End Enum
- DIPROPAXISMODE_ABS
- Used in DirectInputDevice.GetProperty and DirectInputDevice.SetProperty to represent absolute axis mode.
- DIPROPAXISMODE_REL
- Used in DirectInputDevice.GetProperty and DirectInputDevice.SetProperty to represent relative axis mode.
- DIPROPCALIBRATIONMODE_COOKED
- Used in setting the DIPROP_CALIBRATIONMODE property to indicate that DirectInput should return axis data after applying calibration information.
- DIPROPCALIBRATIONMODE_RAW
- Used in setting the DIPROP_CALIBRATIONMODE property to indicate that DirectInput should return raw, uncalibrated data. This mode is typically used only by Control Panel–type applications.
- DIPROPRANGE_NOMAX
- Returned from DirectInputDevice.GetProperty if the axis has no upper limit on its range.
- DIPROPRANGE_NOMIN
- Returned from DirectInputDevice.GetProperty if the axis has no lower limit on its range.