Defines an enumeration that specifies the type of graphic shape to use on both ends of each DASH in a dashed line.
Namespace: RSGdiPlusGraphicsTypes
Delphi
|
type
TRSGPDashCap = (
dcFlat,
dcUnused,
dcRound = 2,
dcTriangle
);
|
|
Name
|
Description
|
|
dcFlat
|
Specifies a square cap that squares off both ends of each dash.
|
|
dcRound
|
Specifies a circular cap that rounds off both ends of each dash.
|
|
dcTriangle
|
Specifies a triangular cap that points both ends of each dash.
|
|
dcUnused
|
Represents constant dcUnused.
|
Top
|