MetaPolydraw


This metafile command draws a sequence of lines and curves.

class MetaPolydraw : public Meta
{
 public:
  Rectangle Bounds;
  unsigned Count;
  Point Points[1];
  unsigned char Types[1];
};

Bounds The bounding Rectangle of the figure.
Count The number of points in the figure.
Points An array of points defining the shape of the figure.
Types An array of bytes containing the point types.

Notes

The figure is drawn in the current Pen (and is not filled).

If a path is currently open, this function adds to that path.

The current position within the device context is updated.

See related C function Polydraw.