[]
Fills a path defined by a GraphicsPath object.
public void FillPath(Brush brush, GraphicsPath path)
Type | Name | Description |
---|---|---|
Brush | brush | The Brush used to fill the path. |
GraphicsPath | path | The GraphicsPath to fill. |
Fills a path defined by points and types.
public void FillPath(Color color, PointF[] points, byte[] types, bool winding)
Type | Name | Description |
---|---|---|
Color | color | The Brush used to fill the path. |
PointF[] | points | The path points to fill. |
byte[] | types | The path types to fill. |
bool | winding | The winding fill mode flag to draw, by default alternate fill mode. |
Fills a path defined by points and types.
public void FillPath(Brush brush, PointF[] points, byte[] types, bool winding)
Type | Name | Description |
---|---|---|
Brush | brush | The Brush used to fill the path. |
PointF[] | points | The path points to fill. |
byte[] | types | The path types to fill. |
bool | winding | The winding fill mode flag to draw, by default alternate fill mode. |