2.2.1.2.4 PenStyle
The PenStyle enumeration defines the style and width of a pen to be used on a drawing surface.
-
typedef enum { PS_SOLID = 0x00000000, PS_DASH = 0x00000001, PS_DOT = 0x00000002, PS_DASHDOT = 0x00000003, PS_DASHDOTDOT = 0x00000004, PS_NULL = 0x00000005, PS_INSIDEFRAME = 0x00000006 } PenStyle;
PS_SOLID: The pen is solid.
PS_DASH: The pen is dashed.
PS_DOT: The pen is dotted.
PS_DASHDOT: The pen has alternating dashes and dots.
PS_DASHDOTDOT: The pen has alternating dashes and double dots.
PS_NULL: The pen is invisible.
PS_INSIDEFRAME: The pen is solid. When this pen is used with a bounding rectangle, the dimensions of the figure are shrunk so that it fits entirely in the bounding rectangle and takes into account the width of the pen. This applies only to geometric pens.