EMRPOLYPOLYLINE16 structure (wingdi.h)

The EMRPOLYPOLYLINE16 and EMRPOLYPOLYGON16 structures contain members for the PolyPolyline and PolyPolygon enhanced metafile records.

Syntax

typedef struct tagEMRPOLYPOLYLINE16 {
  EMR    emr;
  RECTL  rclBounds;
  DWORD  nPolys;
  DWORD  cpts;
  DWORD  aPolyCounts[1];
  POINTS apts[1];
} EMRPOLYPOLYLINE16, *PEMRPOLYPOLYLINE16, EMRPOLYPOLYGON16, *PEMRPOLYPOLYGON16;

Members

emr

The base structure for all record types.

rclBounds

The bounding rectangle, in device units.

nPolys

The number of polys.

cpts

The total number of points in all polys.

aPolyCounts[1]

An array of point counts for each poly.

apts[1]

An array of POINTS structures, representing the points in logical units.

Requirements

Requirement Value
Minimum supported client Windows 2000 Professional [desktop apps only]
Minimum supported server Windows 2000 Server [desktop apps only]
Header wingdi.h (include Windows.h)

See also

EMR

Metafile Structures

Metafiles Overview

POINTS

RECTL