Overload | Description |
---|---|
DrawPolygon(PointF[],Color,Single,DashStyle) | Draws a polygon specified by an array of points, using a specified line color, width and style.
If the value of lineStyle parameter is not DashStyle.Solid, the polygon is drawn with a Pen having Pen.LineCap set to PenLineCap.Square instead of PenLineCap.Flat. |
DrawPolygon(PointF[],Color,Single,Single[]) | Draws a polygon specified by an array of points, using a specified line color, width and dash pattern.
If the dashPattern array contains two or more items, the polygon is drawn with a Pen having Pen.LineCap set to PenLineCap.Square instead of PenLineCap.Flat. |
DrawPolygon(PointF[],Pen) | Draws a polygon specified by an array of points, using a specified pen. |
DrawPolygon(Quadrilateral,Color,Single,DashStyle) | Draws a polygon specified by an array of points, using a specified line color, width and style.
If the value of lineStyle parameter is not DashStyle.Solid, the polygon is drawn with a Pen having Pen.LineCap set to PenLineCap.Square instead of PenLineCap.Flat. |
DrawPolygon(Quadrilateral,Color,Single,Single[]) | Draws a polygon specified by an array of points, using a specified line color, width and dash pattern.
If the dashPattern array contains two or more items, the polygon is drawn with a Pen having Pen.LineCap set to PenLineCap.Square instead of PenLineCap.Flat. |
DrawPolygon(Quadrilateral,Pen) | Draws a polygon specified by an array of points, using a specified pen. |