PathPointType Enumeration
Specifies the type of point in a GraphicsPath object.
[Visual Basic] <Serializable> Public Enum PathPointType [C#] [Serializable] public enum PathPointType [C++] [Serializable] __value public enum PathPointType [JScript] public Serializable enum PathPointType
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 Bzier 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.
Members
| Member name | Description |
|---|---|
| Bezier | Specifies a default Bezier curve. |
| Bezier3 | Specifies a cubic Bezier curve. |
| CloseSubpath | Specifies the ending point of a subpath. |
| DashMode | Specifies that the corresponding segment is dashed. |
| Line | Specifies a line segment. |
| PathMarker | Specifies a path marker. |
| PathTypeMask | Specifies a mask point. |
| Start | Specifies the starting point of a GraphicsPath. |
Requirements
Namespace: System.Drawing.Drawing2D
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
Assembly: System.Drawing (in System.Drawing.dll)