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.
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;
Border will be a solid line.
Border will be a dashed line.
Border will be a dotted line.
Border will be a dash-dot-dash line.
Border will be a dash-dot-dot-dash line.
Border will be a dash-dot-dot-dot-dash line.
Border will be a dash-gap-dash (– –) line.
Border will be a dot-gap-dot line.
Border will be a dash-dot-gap line.
Border will be a dash-dot-dot-gap line.
Border will be a dash-dot-dot-dot-gap line.
Border will be transparent.