Specifies the line style of a line drawn with a Windows GDI+ pen. The line can be drawn by using one of several predefined styles or a custom style.
Namespace: RSGdiPlusGraphicsTypes
Delphi
|
type
TRSGPStrokeDash = (
sdSolid,
sdDash,
sdDot,
sdDashDot,
sdDashDotDot,
sdCustom
);
|
|
Name
|
Description
|
|
sdCustom
|
Specifies a user-defined, custom dashed line.
|
|
sdDash
|
Specifies a dashed line.
|
|
sdDashDot
|
Specifies an alternating dash-dot line.
|
|
sdDashDotDot
|
Specifies an alternating dash-dot-dot line.
|
|
sdDot
|
Specifies a dotted line.
|
|
sdSolid
|
Specifies a solid line.
|
Top
|