Description
Draws a sequence of connected lines.
Syntax
GpStatus WINGDIPAPI GdipDrawLines(
GpGraphics
*graphics,
GpPen *pen,
GDIPCONST
GpPointF *points,
INT count
);
PowerBASIC Syntax
DECLARE FUNCTION GdipDrawLines ( _
BYVAL graphics
AS DWORD, _
BYVAL pen AS
DWORD, _
BYREF pPoints
AS PointF, _
BYVAL count AS
LONG _
) AS LONG
Parameters
graphics
[in] Pointer to the
Graphics
object.
pen
[in] Pointer to a pen that is used to draw the
line.
points
[in] Pointer to an array of
PointF
structures that specify the starting and ending points of the lines.
count
[in] Long integer value that specifies the
number of elements in the points array.
Remarks
Each line requires a starting point and an
ending point. The ending point of each line is the starting point for
the next.
|