MetaFillRegion


This metafile command fills a region using a given brush.

class MetaFillRegion : public Meta
{
 public:
  Rectangle Bounds;
  unsigned Size;
  unsigned BrushIndex;
  unsigned char RegionData[1];

  unsigned char& operator()(unsigned Index);
};

Bounds The bounding rectangle for the operation (in device units).
Size The size of the buffer containing the region data.
BrushIndex The index into the handle table of the brush to be used.
RegionData An area of memory containing an instance of the class RegionData.

Notes

See related C function FillRegion.