Polygon (Compact 2013)

3/28/2014

This function draws a polygon consisting of two or more vertices connected by straight lines. The current pen outlines the polygon, and the current brush fills it using the specified polygon fill mode.

Syntax

BOOL Polygon(
  HDC hdc, 
  const POINT* lpPoints, 
  int nCount
); 

Parameters

  • hdc
    [in] Handle to the device context.
  • lpPoints
    [in] Long pointer to an array of POINT structures that specify the vertices of the polygon.
  • nCount
    [in] Specifies the number of vertices in the array.

    This value must be greater than or equal to 2.

Return Value

Nonzero indicates success.

Zero indicates failure.

To get extended error information, call GetLastError.

Remarks

The polygon is closed by drawing a line from the last vertex to the first.

The current position is not used or updated by the Polygon function.

Requirements

Header

windows.h

Library

coredll.lib

See Also

Reference

GDI Functions
Polyline
POINT