FMX.Graphics.TStrokeJoin

From RAD Studio API Documentation
Jump to: navigation, search

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

Miter

StrokeJoin Miter.png The joint is mitered. The corner between two segments is sharp. This is the default value.

Round

StrokeJoin Round.png The joint is circular. A circular arc is drawn between the lines.

Bevel

StrokeJoin Bevel.png The joint is beveled. The corner between two segments is a diagonal corner.

See Also

Code Example