Defines the TRSPathData points' kind.
Namespace: RSGraphics
Delphi
|
type
TRSPathPointKind = (
ppMoveTo,
ppLineTo,
ppCurveTo,
ppClose);
|
|
Name
|
Description
|
|
ppClose
|
The point is added when TRSPathData is closed.
|
|
ppCurveTo
|
The point is a control point or the end point of a curve. The point was added to TRSPathData through the CurveTo,CurveoRel, SmoothCurveTo, or SmoothCurveoRel method.
|
|
ppLineTo
|
The point defines the end point of a line. The point was added to TRSPathData through the LineTo or LineToRel method.
|
|
ppMoveTo
|
The point was added to TRSPathData through the MoveTo or MoveToRel method.
|
Top
|