FMX.Types.TStrokeJoin
From RAD Studio API Documentation
Delphi
TStrokeJoin = (sjMiter, sjRound, sjBevel);
C++
enum class DECLSPEC_DENUM TStrokeJoin : unsigned int { sjMiter, sjRound, sjBevel };
Contents |
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | FMX.Types.pas FMX.Types.hpp |
FMX.Types | FMX.Types |
Description
Specifies the style of the joints that connect the line segments of a shape or a path to be drawn.
TStrokeJoin can have the following values:
| Value | Meaning |
|---|---|
|
|
The joint is mitered. The corner between two segments is sharp. This is the default value. |
|
|
The joint is circular. A circular arc is drawn between the lines. |
|
|
The joint is beveled. The corner between two segments is a diagonal corner. |
