2.1.1.18 LineJoinType Enumeration
The LineJoinType enumeration defines ways to join two lines that are drawn by the same graphics pen and whose ends meet.
-
typedef enum { LineJoinTypeMiter = 0x00000000, LineJoinTypeBevel = 0x00000001, LineJoinTypeRound = 0x00000002, LineJoinTypeMiterClipped = 0x00000003 } LineJoinType;
LineJoinTypeMiter: A mitered line join.
LineJoinTypeBevel: A beveled line join.
LineJoinTypeRound: A rounded line join.
LineJoinTypeMiterClipped: A clipped mitered line join.
Graphics lines are specified by EmfPlusPen objects. A line join makes the intersection of the two line ends look more continuous.
See section 2.1.1 for the specification of additional enumerations.