PathPointType 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 type of point in a GraphicsPath object.
public enum class PathPointType
public enum PathPointType
type PathPointType =
Public Enum PathPointType
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Start | 0 | The starting point of a GraphicsPath object. |
Line | 1 | A line segment. |
Bezier | 3 | A default Bézier curve. |
Bezier3 | 3 | A cubic Bézier curve. |
PathTypeMask | 7 | A mask point. |
DashMode | 16 | The corresponding segment is dashed. |
PathMarker | 32 | A path marker. |
CloseSubpath | 128 | The endpoint of a subpath. |
Remarks
Each point in a GraphicsPath object has a type associated with it. The type determines how the point is used to draw the path. Point types that make up shapes include start points, stop points, and Bézier curve points. Types also include markers, which allow easy traversal of a path or a mask to show or hide points. The Line type and any of the Bezier types can be combined with CloseSubpath (by using the bitwise operator OR
) to indicate that the corresponding point is the last point in a figure and that the figure should be closed.