GraphicsPath.PathTypes Property
Gets the types of the corresponding points in the PathPoints array.
Assembly: System.Drawing (in System.Drawing.dll)
The array of bytes returned by the PathTypes property specifies point types and flags for the data points in a path. For each point, bits 0 through 2 indicate the type of a point, and bits 3 through 7 hold a set of flags that specify the attributes of a point. The following table shows possible values and their meanings.
|
Value |
Meaning |
|---|---|
|
0 |
Indicates that the point is the start of a figure. |
|
1 |
Indicates that the point is one of the two endpoints of a line. |
|
3 |
Indicates that the point is an endpoint or control point of a cubic Bézier spline. |
|
0x7 |
Masks all bits except for the three low-order bits, which indicate the point type. |
|
0x20 |
Specifies that the point is a marker. |
|
0x80 |
Specifies that the point is the last point in a closed subpath (figure). |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.