PathPointTypefunction
Indicates point types and flags for the data points in a path. Bits 0 through 2 indicate the type of a point, and bits 3 through 7 hold a set of flags that specify attributes of a point.
Parameters
| Name | Description | |
|---|---|---|
PathPointTypeStart | &h00 | |
PathPointTypeLine | &h01 | |
PathPointTypeBezier | &h03 | |
PathPointTypeBezier3 | &h03 | |
PathPointTypePathTypeMask | &h07 | |
PathPointTypePathDashMode | &h10 | |
PathPointTypePathMarker | &h20 | |
PathPointTypeCloseSubpath | &h80 |
Description
Indicates point types and flags for the data points in a path. Bits 0 through 2 indicate the type of a point, and bits 3 through 7 hold a set of flags that specify attributes of a point.
The PathPointType enumeration indicates point types and flags for the data points in a path. Bits 0 through 2 indicate the type of a point, and bits 3 through 7 hold a set of flags that specify attributes of a point. This enumeration is used by the GraphicsPath and PathIterator functions.
Remarks
A GraphicsPath object has an array of points and an array of types. Each element in the array of types is a byte that specifies the point type and a set of flags for the corresponding element in the array of points.
Reference
- Documented in Graphics/GdiPlus Flat Api/GdiPlus Enumerations.md
- Topic: GdiPlus Enumerations