Enum IGDIPlus.TGPDashStyle
(Automated Syncronization with Documentation) |
(Automated Syncronization with Documentation) |
(12 intermediate revisions by one user not shown) |
Latest revision as of 01:31, 7 June 2013
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: SignalLabBasicPkg
Unit: IGDIPlus
Contents |
Syntax
Delphi:
type TGPDashStyle = (DashStyleSolid, DashStyleDash, DashStyleDot, DashStyleDashDot, DashStyleDashDotDot, DashStyleCustom);
C++ Builder:
enum TGPDashStyle {DashStyleSolid, DashStyleDash, DashStyleDot, DashStyleDashDot, DashStyleDashDotDot, DashStyleCustom};
Visual C++ (MFC):
enum CTGPDashStyle {DashStyleSolid, DashStyleDash, DashStyleDot, DashStyleDashDot, DashStyleDashDotDot, DashStyleCustom};
Summary
Specifies the line style of a line drawn with a Microsoft Windows GDI+ pen.
Description
Defines enumeration that specifies the line style of a line drawn with a Microsoft Windows GDI+ pen. The line can be drawn by using one of several predefined styles or a custom style.
Values
DashStyleSolid | Specifies a solid line. |
DashStyleDash | Specifies a dashed line. |
DashStyleDot | Specifies a dotted line. |
DashStyleDashDot | Specifies an alternating dash-dot line. |
DashStyleDashDotDot | Specifies an alternating dash-dot-dot line. |
DashStyleCustom | Specifies a user-defined, custom dashed line. |