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: Specifies a solid line.
LineStyleDash: Specifies a dashed line.
LineStyleDot: Specifies a dotted line.
LineStyleDashDot: Specifies an alternating dash-dot line.
LineStyleDashDotDot: Specifies an alternating dash-dot-dot line.
LineStyleCustom: Specifies a user-defined, custom dashed line.
Graphics lines are specified by EmfPlusPen objects.
See section 2.1.1 for the specification of additional enumerations.