Defines the TRSGPPathData points' flags.
Note
|
Note that the TRSGPPathPointKind type tries to mimic the FMX TPathPointKind type. However, the GDI+ type is slightly different.
|
Namespace: RSGdiPlusGraphicsTypes
Delphi
|
type
TRSGPPathPointFlag = (
pfDash,
pfMarker,
pfUnused,
pfClose);
|
|
Name
|
Description
|
|
pfClose
|
Specifies that the point is the last point in a closed subpath (figure).
|
|
pfDash
|
Specifies the point is part of a dashed line
|
|
pfMarker
|
Specifies that the point is a marker.
|
|
pfUnused
|
Represents constant pfUnused.
|
Top
|