Graphics.FillPolygon
Contents
[
Hide
]FillPolygon(Brush, PointF[], FillMode)
Fills the interior of a polygon defined by an array of points specified by PointF structures using the specified fill mode.
public void FillPolygon(Brush brush, PointF[] points, FillMode fillMode)
Parameter | Type | Description |
---|---|---|
brush | Brush | Brush that determines the characteristics of the fill. |
points | PointF[] | Array of PointF structures that represent the vertices of the polygon to fill. |
fillMode | FillMode | Member of the FillMode enumeration that determines the style of the fill. |
See Also
- class Brush
- struct PointF
- enum FillMode
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing
FillPolygon(Brush, PointF[])
Fills the interior of a polygon defined by an array of points specified by PointF structures.
public void FillPolygon(Brush brush, PointF[] points)
Parameter | Type | Description |
---|---|---|
brush | Brush | Brush that determines the characteristics of the fill. |
points | PointF[] | Array of PointF structures that represent the vertices of the polygon to fill. |
See Also
- class Brush
- struct PointF
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing
FillPolygon(Brush, Point[])
Fills the interior of a polygon defined by an array of points specified by Point structures.
public void FillPolygon(Brush brush, Point[] points)
Parameter | Type | Description |
---|---|---|
brush | Brush | Brush that determines the characteristics of the fill. |
points | Point[] | Array of Point structures that represent the vertices of the polygon to fill. |
See Also
- class Brush
- struct Point
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing
FillPolygon(Brush, Point[], FillMode)
Fills the interior of a polygon defined by an array of points specified by Point structures using the specified fill mode.
public void FillPolygon(Brush brush, Point[] points, FillMode fillMode)
Parameter | Type | Description |
---|---|---|
brush | Brush | Brush that determines the characteristics of the fill. |
points | Point[] | Array of Point structures that represent the vertices of the polygon to fill. |
fillMode | FillMode | Member of the FillMode enumeration that determines the style of the fill. |
See Also
- class Brush
- struct Point
- enum FillMode
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing