Graphics.DrawLines
Contents
[
Hide
]DrawLines(Pen, PointF[])
Draws a series of line segments that connect an array of PointF structures.
public void DrawLines(Pen pen, PointF[] points)
Parameter | Type | Description |
---|---|---|
pen | Pen | Pen that determines the color, width, and style of the line segments. |
points | PointF[] | Array of PointF structures that represent the points to connect. |
See Also
- class Pen
- struct PointF
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing
DrawLines(Pen, Point[])
Draws a series of line segments that connect an array of Point structures.
public void DrawLines(Pen pen, Point[] points)
Parameter | Type | Description |
---|---|---|
pen | Pen | Pen that determines the color, width, and style of the line segments. |
points | Point[] | Array of Point structures that represent the points to connect. |
See Also
- class Pen
- struct Point
- class Graphics
- namespace System.Drawing
- assembly Aspose.Drawing