PathOperation Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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. |