FMX.Graphics.TPathPointKind

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TPathPointKind = (MoveTo, LineTo, CurveTo, Close);

C++

enum class DECLSPEC_DENUM TPathPointKind : unsigned int { MoveTo, LineTo, CurveTo, Close };

Properties

Type Visibility Source Unit Parent
enum public
FMX.Graphics.pas
FMX.Graphics.hpp
FMX.Graphics FMX.Graphics

Description

Defines the TPathData points' kind.

TPathPointKind can have the following values:

Value Meaning

MoveTo

The point was added to TPathData through the MoveTo or MoveToRel method.

LineTo

The point defines the end point of a line. The point was added to TPathData through the LineTo or LineToRel method.

CurveTo

The point is a control point or the end point of a curve. The point was added to TPathData through the CurveTo,CurveoRel, SmoothCurveTo, or SmoothCurveoRel method.

Close

The point is added when TPathData is closed.

See Also