Polyline Method

Object List Next Object

Defined By:
Printer

Description:

Draws line segments in a series by connecting the points in the array that is specified.

Declaration:

Sub Polyline(x() As Single, y() As Single, ByVal count As Long)


Syntax Description


x(), y() Array of points.

count Number of points in the x() and y() arrays.

Details:

Polyline is similar to Polygon, except it is not filled and is not automatically closed.

It uses the DrawStyle, DrawWidth, and DrawColor properties to determine the appearance of the lines that are drawn.

Polyline does not use nor update the current position.

See Also:

DrawStyle, DrawWidth, and DrawColor properties