CDC::Polyline

Draws a set of line segments connecting the points specified by lpPoints.

BOOL Polyline( 
   LPPOINT lpPoints, 
   int nCount  
);

Parameters

  • lpPoints
    Points to an array of POINT structures or CPoint objects to be connected.

  • nCount
    Specifies the number of points in the array. This value must be at least 2.

Return Value

Nonzero if the function is successful; otherwise 0.

Remarks

The lines are drawn from the first point through subsequent points using the current pen. Unlike the LineTo member function, the Polyline function neither uses nor updates the current position.

For more information, see PolyLine in the Windows SDK.

Requirements

Header: afxwin.h

See Also

Reference

CDC Class

Hierarchy Chart

CDC::LineTo

CDC::Polygon

POINT Structure

CPoint Class