MetaGradientFill


This metafile command performs a gradient Fill operation.

class MetaGradientFill : public Meta
{
 public:
  Rectangle Bounds;
  unsigned Vertices;
  unsigned Figures;
  unsigned Mode;
  Trivertex VertexArray[1];

  Trivertex& operator[](unsigned Index) {return VertexArray[index];}
};

Members

Bounds The bounding rectangle for the operation (in device units).
vertices The number of Vertices.
Figures The number of rectangles or triangles to be filled.
Mode The mode of the gradient Fill.
VertexArray An array of Trivertex structures, each of which defines a vertex.

Notes

See related C function GradientFill.