|
Sets the line join style.
type
TLineJoinStyle = ( ljMiterJoin, ljRoundJoin, ljBevelJoin );
Delphi syntax:
procedure SetLineJoin ( LineJoin: TLineJoinStyle );
C++ syntax:
void __fastcall SetLineJoin ( TLineJoinStyle LineJoin);
Description:
The line join style speci.es the shape to be used at the corners of paths that are stroked.
Value Meaning
|
ljMiterJoin
|
Miter join. The outer edges of the strokes for the two segments are extended
until they meet at an angle, as in a picture frame.
|

|
|
ljRoundJoin
|
Round join. A circle with a diameter equal to the line width is drawn around
the point where the two segments meet and is filled in, producing a rounded
corner.
|

|
|
ljBevelJoin
|
Bevel join. The two segments are finished with butt caps and the resulting notch beyond the ends of the segments
is filled with a triangle.
|

|
|