FMX.Graphics.TStrokeDash
Delphi
TStrokeDash = (Solid, Dash, Dot, DashDot, DashDotDot, Custom);
C++
enum class DECLSPEC_DENUM TStrokeDash : unsigned int { Solid, Dash, Dot, DashDot, DashDotDot, Custom, sdSolid _DEPRECATED_ATTRIBUTE3("Use TStrokeDash.Solid") = 0, sdDash _DEPRECATED_ATTRIBUTE3("Use TStrokeDash.Dash") = 1, sdDot _DEPRECATED_ATTRIBUTE3("Use TStrokeDash.Dot") = 2, sdDashDot _DEPRECATED_ATTRIBUTE3("Use TStrokeDash.DashDot") = 3, sdDashDotDot _DEPRECATED_ATTRIBUTE3("Use TStrokeDash.DashDotDot") = 4, sdCustom _DEPRECATED_ATTRIBUTE3("Use TStrokeDash.Custom") = 5 };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | FMX.Graphics.pas FMX.Graphics.hpp |
FMX.Graphics | FMX.Graphics |
Description
Specifies the style of a line.
TStrokeDash can have the following values:
Value | Meaning |
---|---|
|
|
|
|
|
|
|
|
|
|
|
The line is composed of alternating elements with a certain rule specified by an array of values for the lengths and spaces between elements. |
A customized line is composed of elements with different lengths and spaces between elements.
See Also
- FMX.Graphics.TCanvas.SetCustomDash
- FMX.Graphics.TStrokeCap
- FMX.Graphics.TStrokeJoin
- FMX.Graphics.TCanvas.StrokeDash