MetaFloodFill


This metafile command fills an area bounded by a specified color.

class MetaFloodFill : public Meta
{
 public:
  Point Start;
  color Flood;
  unsigned Mode;
};

Members

Start The starting Point of the flood Fill.
Flood The color used to Fill the area.
Mode The type of the flood Fill

Notes

See related C function ExtendedFloodFill.