public Path AddLines(
params PointF[] points
)
Public Function AddLines (
ParamArray points As PointF()
) As Path
public:
Path^ AddLines(
... array<PointF>^ points
)
member AddLines :
points : PointF[] -> Path
The first point of the points array will be the starting point of the first line segment. Each additional point specifies the endpoint of a line segment, whose starting point is the endpoint of the previous line.
If the current figure is not empty or closed, the added lines will be connected to the last point of the figure.
The points are not validated here but in the moment of drawing the coordinates of the possibly transformed path points must fall into the bounds of an int value; otherwise, an OverflowException will be thrown.
ArgumentNullException | points is . |