Gdi::Polyline_I (Windows Embedded CE 6.0)
1/6/2010
This method draws a series of line segments by connecting the points in the specified array.
Syntax
static WINGDIAPI BOOL WINAPI Polyline_I(
HDC hdc,
const POINT* lppt,
int cPoints
);
Parameters
- hdc
[in] Handle to a device context.
lppt
[in] Long pointer to an array of POINT structures.Each structure in the array identifies a point in logical space.
cPoints
[in] Integer that specifies the number of points in the array.This number must be greater than or equal to two.
Return Value
Nonzero indicates success.
Zero indicates failure.
To get extended error information, call GetLastError.
Remarks
This method is an internal version of the Polyline function.
The lines are drawn from the first point through subsequent points by using the current pen. Gdi::Polyline_I neither uses nor updates the current position.
Requirements
Header | gdi.hpp |
Windows Embedded CE | Windows CE .NET 4.0 and later |