FMX.Graphics.TStrokeCap

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TStrokeCap = (Flat, Round);

C++

enum class DECLSPEC_DENUM TStrokeCap : unsigned int { Flat, Round };

Properties

Type Visibility Source Unit Parent
enum public
FMX.Graphics.pas
FMX.Graphics.hpp
FMX.Graphics FMX.Graphics

Description

Specifies the graphic style used to draw the ends of a line.

TStrokeCap can have the following values:

Value Meaning

Flat

The line ends at the last point. The end is squared off. ScFlat.png

Round

The line end is circular. The center of the circle is the last point in the line. The diameter of the circle is the line width. ScRound.png

See Also

Code Examples