2.1.17 HatchStyle Enumeration

The HatchStyle enumeration is an extension to the WMF HatchStyle enumeration ([MS-WMF] section 2.1.1.12).

 typedef  enum 
 {
   HS_SOLIDCLR = 0x0006,
   HS_DITHEREDCLR = 0x0007,
   HS_SOLIDTEXTCLR = 0x0008,
   HS_DITHEREDTEXTCLR = 0x0009,
   HS_SOLIDBKCLR = 0x000A,
   HS_DITHEREDBKCLR = 0x000B
 } HatchStyle;

HS_SOLIDCLR: The hatch is not a pattern, but is a solid color.

HS_DITHEREDCLR: The hatch is not a pattern, but is a dithered color.

HS_SOLIDTEXTCLR: The hatch is not a pattern, but is a solid color, defined by the current text (foreground) color.

HS_DITHEREDTEXTCLR: The hatch is not a pattern, but is a dithered color, defined by the current text (foreground) color.

HS_SOLIDBKCLR: The hatch is not a pattern, but is a solid color, defined by the current background color.

HS_DITHEREDBKCLR: The hatch is not a pattern, but is a dithered color, defined by the current background color.