GraphicsPath::AddLines Method (array<PointF>^)

 

Appends a series of connected line segments to the end of this GraphicsPath.

Namespace:   System.Drawing.Drawing2D
Assembly:  System.Drawing (in System.Drawing.dll)

public:
void AddLines(
	array<PointF>^ points
)

Parameters

points
Type: array<System.Drawing::PointF>^

An array of PointF structures that represents the points that define the line segments to add.

If there are previous lines or curves in the figure, a line is added to connect the endpoint of the previous segment the starting point of the line. The points parameter specifies an array of endpoints. The first two specify the first line. Each additional point specifies the endpoint of a line segment whose starting point is the endpoint of the previous line.

For an example, see AddLines(array<Point>^).

.NET Framework
Available since 1.1
Return to top
Show: