FMX.Graphics.TStrokeJoin
Delphi
TStrokeJoin = (Miter, Round, Bevel);
C++
enum class DECLSPEC_DENUM TStrokeJoin : unsigned int { Miter, Round, Bevel, sjMiter _DEPRECATED_ATTRIBUTE3("Use TStrokeJoin.Miter") = 0x0, sjRound _DEPRECATED_ATTRIBUTE3("Use TStrokeJoin.Round") = 0x1, sjBevel _DEPRECATED_ATTRIBUTE3("Use TStrokeJoin.Bevel") = 0x2 };
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| enum | public | FMX.Graphics.pas FMX.Graphics.hpp |
FMX.Graphics | FMX.Graphics |
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 |
|---|---|
|
|
Error creating thumbnail: Unable to save thumbnail to destination The joint is mitered. The corner between two segments is sharp. This is the default value. |
|
|
Error creating thumbnail: Unable to save thumbnail to destination The joint is circular. A circular arc is drawn between the lines. |
|
|
Error creating thumbnail: Unable to save thumbnail to destination The joint is beveled. The corner between two segments is a diagonal corner. |