CDC::Polyline
Visual Studio 2005
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.
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 Platform SDK.
Reference
CDC ClassHierarchy Chart
CDC::LineTo
CDC::Polygon
POINT Structure
CPoint Class