TdxStrokeStyle Enum
Enumerates stroke styles for drawing lines in visual elements.
#Declaration
TdxStrokeStyle = (
Solid,
Dash,
Dot,
DashDot,
DashDotDot
);
#Members
Name | Description | Example |
---|---|---|
Solid
|
Default. A simple solid line. |
|
Dash
|
A simple dashed line. |
|
Dot
|
A simple dotted line. |
|
Dash
|
A line that consists of alternating dots and dashes. |
|
Dash
|
A line that consists of repetitive dashes followed by two dots. |
#Remarks
The TdxStrokeOptions.Style property references the TdxStrokeStyle
type.
Note
Tdx
is a scoped enumeration type. Use the type name together with a scope resolution token (.
in Delphi or ::
in C++Builder) followed by an enumeration value to refer to this value. For example, use Tdx
(in Delphi) or Tdx
(in C++Builder) to refer to the Dash
value in code.