An enumeration of all possible types that make up a GeneralPath
Namespace: yWorks.Canvas.DrawingAssembly: yWorks.yFilesSilverlight.Viewer (in yWorks.yFilesSilverlight.Viewer.dll) Version: 2.1.0.2
Syntax
| C# |
|---|
public enum PathType |
| Visual Basic |
|---|
Public Enumeration PathType |
Members
| Member name | Description | ||
|---|---|---|---|
| MoveTo | 0 | The type that is used to move the pen to the next position. | |
| LineTo | 1 | The type that is used to add a line from the current position to the next position. | |
| QuadTo | 2 | The type that is used to add a quadratic bezier curve from the current position to the next position using one control point. | |
| CubicTo | 3 | The type that is used to add a cubic bezier curve from the current position to the next position using two intermediate control points. | |
| Close | 4 | The type that is used to add a line from the current position to the last MoveTo position. |