Defines the TRSGPPathData points' kind.
Note
|
Note that this type tries to mimic the FMX TPathPointKind. However, the GDI+ path point kind has extra flags associated with points. The close point is part of the TRSGPPathPointFlag type.
|
Namespace: RSGdiPlusGraphicsTypes
Delphi
|
type
TRSGPPathPointMoveKind = (
ppMoveTo,
ppLineTo,
ppUnused,
ppCurveTo);
|
|
Name
|
Description
|
|
ppCurveTo
|
The point is a control point or the end point of a curve. The point was added to the Path Data through the CurveTo,CurveoRel, SmoothCurveTo, or SmoothCurveoRel method.
|
|
ppLineTo
|
The point defines the end point of a line. The point was added to the Path Data through the LineTo or LineToRel method.
|
|
ppMoveTo
|
The point was added to the Path Data through the MoveTo or MoveToRel method.
|
|
ppUnused
|
Represents constant ppUnused.
|
Top
|