2.1.1.19 LineStyle Enumeration

The LineStyle enumeration defines styles of lines that are drawn with graphics pens.

 typedef  enum 
 {
   LineStyleSolid = 0x00000000,
   LineStyleDash = 0x00000001,
   LineStyleDot = 0x00000002,
   LineStyleDashDot = 0x00000003,
   LineStyleDashDotDot = 0x00000004,
   LineStyleCustom = 0x00000005
 } LineStyle;

LineStyleSolid:  A solid line.

LineStyleDash:  A dashed line.

LineStyleDot:  A dotted line.

LineStyleDashDot:  An alternating dash-dot line.

LineStyleDashDotDot:  An alternating dash-dot-dot line.

LineStyleCustom:  A user-defined, custom dashed line.

Graphics lines are specified by EmfPlusPen objects.

See section 2.1.1 for the specification of additional enumerations.