Share via


PathOperation Enum

Definition

Specifies the types of operations that can be performed on a path.

public enum class PathOperation
public enum PathOperation
type PathOperation = 
Public Enum PathOperation
Inheritance
PathOperation

Fields

Name Value Description
Move 0

Moves the current point to a new location without drawing a line.

Line 1

Draws a straight line from the current point to a new point.

Quad 2

Draws a quadratic Bézier curve using the current point, a control point, and an end point.

Cubic 3

Draws a cubic Bézier curve using the current point, two control points, and an end point.

Arc 4

Draws an elliptical arc from the current point to a specified point.

Close 5

Closes the current subpath by drawing a straight line from the current point to the first point of the subpath.

Applies to