typedef enum
{
PAINT_GROUP_BRUSH,
PAINT_GROUP_SHAPE,
PAINT_GROUP_REGION,
PAINT_GROUP_FILL,
PAINT_GROUP_TEXT
} PAINTGROUP ;
An enumeration type that determines the current paint group.
Value |
Meaning |
PAINT_GROUP_BRUSH |
Represents the paintbrush properties found in the PAINTBRUSH structure. |
PAINT_GROUP_SHAPE |
Represents the shape properties found in the PAINTSHAPE structure. |
PAINT_GROUP_REGION |
Represents the region properties found in the he PAINTREGION structure. |
PAINT_GROUP_FILL |
Represents the fill properties found in the PAINTFILL structure. |
PAINT_GROUP_TEXT |
Represents the text properties found in the PAINTTEXT structure. |
Each paint group represents a set of properties for a specific painting ability. For example, the paint group indicated by PAINT_GROUP_BRUSH represents the set of properties for the paintbrush. These properties are set using the PAINTBRUSH structure.