PROPERTY_UNITS Enumeration
PROPERTY_UNITS Enumeration |
Defines constant values for the unit of measurement of a property.
Declaration
[C++]
typedef enum _PROPERTY_UNITS{
PROPERTY_UNITS_DEFAULT = 0,
PROPERTY_UNITS_INCHES = 1,
PROPERTY_UNITS_CENTIMETERS = 2,
PROPERTY_UNITS_DEGREES = 3,
PROPERTY_UNITS_RADIANS = 4,
PROPERTY_UNITS_SECONDS = 5,
PROPERTY_UNITS_POUNDS = 6,
PROPERTY_UNITS_GRAMS = 7
} PROPERTY_UNITS, *PPROPERTY_UNITS;
Members
Name | Description |
---|---|
PROPERTY_UNITS_DEFAULT | Units are unknown. |
PROPERTY_UNITS_INCHES | Specifies that the property value is in inches. |
PROPERTY_UNITS_CENTIMETERS | Specifies that the property value is in centimeters. |
PROPERTY_UNITS_DEGREES | Specifies that the property value is in degrees. |
PROPERTY_UNITS_RADIANS | Specifies that the property value is in radians. |
PROPERTY_UNITS_SECONDS | Specifies that the property value is in seconds. |
PROPERTY_UNITS_POUNDS | Specifies that the property value is in pounds. |
PROPERTY_UNITS_GRAMS | Specifies that the property value is in grams. |