PAINTSHAPEBORDERSTYLE

typedef enum
{
   PAINT_SHAPE_BORDER_STYLE_SOLID,
   PAINT_SHAPE_BORDER_STYLE_DASH,
   PAINT_SHAPE_BORDER_STYLE_DOT,
   PAINT_SHAPE_BORDER_STYLE_DASHDOT,
   PAINT_SHAPE_BORDER_STYLE_DASHDOTDOT
   PAINT_SHAPE_BORDER_STYLE_DASHDOTDOTDOT
   PAINT_SHAPE_BORDER_STYLE_DASH_GAP
   PAINT_SHAPE_BORDER_STYLE_DOT_GAP
   PAINT_SHAPE_BORDER_STYLE_DASHDOT_GAP
   PAINT_SHAPE_BORDER_STYLE_DASHDOTDOT_GAP
   PAINT_SHAPE_BORDER_STYLE_DASHDOTDOTDOT_GAP
   PAINT_SHAPE_BORDER_STYLE_TRANSPARENT
} PAINTSHAPEBORDERSTYLE, *pPAINTSHAPEBORDERSTYLE;

The PAINTSHAPEBORDERSTYLE enumerated type contains options for the border style of a shape. These are the possible values for the nBorderStyle member of the PAINTSHAPE structure.

Value

Meaning

PAINT_SHAPE_BORDER_STYLE_SOLID

Border will be a solid line.

PAINT_SHAPE_BORDER_STYLE_DASH

Border will be a dashed line.

PAINT_SHAPE_BORDER_STYLE_DOT

Border will be a dotted line.

PAINT_SHAPE_BORDER_STYLE_DASHDOT

Border will be a dash-dot-dash line.

PAINT_SHAPE_BORDER_STYLE_DASHDOTDOTDOT

Border will be a dash-dot.dot.dot-dash line.

PAINT_SHAPE_BORDER_STYLE_DASH_GAP

Border will be a dash-gap-dash (–  –) line.

PAINT_SHAPE_BORDER_STYLE_DOT_GAP

Border will be a dot-gap-dot line.

PAINT_SHAPE_BORDER_STYLE_DASHDOT_GAP

Border will be a dash dot gap line.

PAINT_SHAPE_BORDER_STYLE_DASHDOTDOT_GAP

Border will be a dash dot dot gap line.

PAINT_SHAPE_BORDER_STYLE_DASHDOTDOTDOT_GAP

Border will be a dash dot dot DOT gap line.

PAINT_SHAPE_BORDER_STYLE_TRANSPARENT

Border will be transparent.