Important: The information in this document is obsolete and should not be used for new development.
Type Definitions for Enumerations
Enumeration declarations in this book are commonly followed by a type definition that is not strictly part of the enumeration. You can use the type to specify one of the enumerated values for a parameter or field. The type name is usually the singular of the enumeration name, as in the following example:
enum gxDashAttributes { gxBendDash = 0x0001, gxBreakDash = 0x0002, gxClipDash = 0x0004, gxLevelDash = 0x0008, gxAutoAdvanceDash = 0x0010 }; typedef long gxDashAttribute;