EMRPOLYPOLYLINE16 structure (wingdi.h)
The EMRPOLYPOLYLINE16 and EMRPOLYPOLYGON16 structures contain members for the PolyPolyline and PolyPolygon enhanced metafile records.
C++
typedef struct tagEMRPOLYPOLYLINE16 {
EMR emr;
RECTL rclBounds;
DWORD nPolys;
DWORD cpts;
DWORD aPolyCounts[1];
POINTS apts[1];
} EMRPOLYPOLYLINE16, *PEMRPOLYPOLYLINE16, EMRPOLYPOLYGON16, *PEMRPOLYPOLYGON16;
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.
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) |