Enumeration to define the line pattern, that is the line style how the defined points are connected together by a polyline. Possible values:
Types.LinePattern. | Meaning |
---|---|
None | Points are not connected |
Solid | Points are connected with a solid line |
Dash | Points are connected with a dash line |
Dot | Points are connected with a dotted line |
DashDot | Points are connected with a dash-dotted line |
DashDotDot | Points are connected with a dash-dotted-dotted line |
type LinePattern = enumeration(None, Solid, Dash, Dot, DashDot, DashDotDot);