Defines an enumeration that specifies the style of the joints that connect the line segments of a shape or a path to be drawn.
Namespace: RSGdiPlusGraphicsTypes
Delphi
|
type
TRSGPStrokeJoin = (
sjMiter,
sjBevel,
sjRound,
sjMiterClipped
);
|
|
Name
|
Description
|
|
sjBevel
|
Specifies a beveled join. This produces a diagonal corner.
|
|
sjMiter
|
Specifies a mitered join. This produces a sharp corner or a clipped corner, depending on whether the length of the miter exceeds the miter limit.
|
|
sjMiterClipped
|
Specifies a mitered join. This produces a sharp corner or a beveled corner, depending on whether the length of the miter exceeds the miter limit.
|
|
sjRound
|
Specifies a circular join. This produces a smooth, circular arc between the lines.
|
Top
|
Unfortunately, the order in GDI+ is different from the FMX order: sjMiter, sjRound, sjBevel
|