USB Sniffer - Software USB packets sniffer & protocol analyzer for Windows
Download Device Monitoring Studio Hide this button

IHIDValue Interface

This interface is implemented by HID value object.

Declaration

interface IHIDValue {
    // Properties
    ${isRange}: boolean;
    ${value}: ${IHIDRange} | number;
}
// This interface is not available in managed environment
// This interface is not available in native environment

IHIDValue Properties

isRange

isRange: boolean;
// This property is not available in managed environment
// This property is not available in native environment

true if value property has the type IHIDRange and false if it is a number.

value

value: ${IHIDRange} | number;
// This property is not available in managed environment
// This property is not available in native environment

Contains the actual parameter value. Can be either an instance of IHIDRange or a number, depending on the isRange property's value.