WiaSubType Enumeration

Specifies more detail about the property value. Use the SubType property on the Property object to obtain these details for the property.

Syntax

Enum WiaSubType
    UnspecifiedSubType = 0
    RangeSubType = 1
    ListSubType = 2
    FlagSubType = 3
End Enum

Constants

  • UnspecifiedSubType
    This property has no subtype.
  • RangeSubType
    This property takes a range of values from SubTypeMin to SubTypeMax in SubTypeStep increments.
  • ListSubType
    This property takes one of a list of values from SubTypeValues.
  • FlagSubType
    This property takes a flag composed of bits listed in SubTypeValues. Flag values are combined using the OR operation.

Remarks

The value of the SubType property on a Property object can return one of the members of the WiaSubType enumeration. This enumeration provides more information about the valid values for the property.

For example code, see Display Detailed Property Information in Shared Samples.

Enumeration Information

Minimum operating systems Windows XP SP1