CGPathElementType Enum

Definition

The type of an element in a CGPath.

public enum CGPathElementType
type CGPathElementType = 
Inheritance
CGPathElementType

Fields

AddCurveToPoint 3

This is an AddCurveTo operation, three point parameters.

AddLineToPoint 1

This is a LineTo operation, one point parameter.

AddQuadCurveToPoint 2

This is an AddQuadCurveTo operation, two point parameters.

CloseSubpath 4

This is a close subpath operation.

MoveToPoint 0

This is a MoveTo operation, one point parameter.

Remarks

This is used by the callback function invoked by the CGPath.Apply method.

Applies to