ukoenig wrote:I tested changing the STYLE expecting maybe to show lines dotted
but there are only solid lines, COLOR works
DEFINE PEN oPen[1] STYLE 0 WIDTH 3 COLOR CLR_RED
DEFINE PEN oPen[2] STYLE 1 WIDTH 2 COLOR CLR_BLUE
regards
Uwe
https://msdn.microsoft.com/it-it/library/windows/desktop/dd183509(v=vs.85).aspx
Please note: "This style is valid only when the pen width is one or less in device units."
/* Pen Styles */
#define PS_SOLID 0
#define PS_DASH 1 /* ------- */
#define PS_DOT 2 /* ....... */
#define PS_DASHDOT 3 /* _._._._ */
#define PS_DASHDOTDOT 4 /* _.._.._ */
#define PS_NULL 5
#define PS_INSIDEFRAME 6
#define PS_USERSTYLE 7
#define PS_ALTERNATE 8
EMG