MetaDrawPolylines


This metafile command draws a series of polylines.

class MetaDrawPolylines : public Meta
{
 public:
  Rectangle Bounds;
  unsigned Polygons;
  unsigned Total;
  unsigned Counts[1];
  Point Points[1];
};

Bounds The bounding rectangle of the figure.
Polygons The number of polygons to be drawn.
Total The total number of points in all polyons.
Counts An array of integers specifying the number of vertices in each polyline figure.
Points An array of points of which the multiple polylines consist.

Notes

See related C function DrawPolylines.