Polyline (Windows CE 5.0)

Send Feedback

This function draws a series of line segments by connecting the points in the specified array.

BOOLPolyline(HDChdc, constPOINT* lppt, intcPoints);

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] Specifies the number of points in the array.

    This number must be greater than or equal to two.

Return Values

Nonzero indicates success.

Zero indicates failure.

To get extended error information, call GetLastError.

Remarks

The lines are drawn from the first point through subsequent points by using the current pen.

The Polyline function neither uses nor updates the current position.

Requirements

OS Versions: Windows CE 1.0 and later.
Header: Windows.h.
Link Library: Coredll.lib.

See Also

POINT | GDI Functions

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.