Declaration ​
pascal
TEndStyle = (esButt, esSquare, esRound);
TEndStyles = set of TEndStyle;Description ​
TEndStyle defines how the open start and end endpoints of polyline paths are capped during stroke outline generation in routines such as PolylineFS and PolyPolylineFS.
Enum Values ​
| Value | Description | Example |
|---|---|---|
esButt | Endpoints are cut off flat exactly at the endpoint coordinates. | |
esSquare | Endpoints are extended past the endpoint by half the line width with flat square caps. | |
esRound | Endpoints are capped with semicircular rounded ends. |