MetaFrameRegion


This metafile command frames a region.

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

  unsigned char& operator()(unsigned Index)
  {return RegionData[Index];}
};

Bounds The bounding rectangle for the operation (in device units).
Size The size of an area of memory containing an instance of the class RegionData.
BrushIndex The index (into the metatable) of the brush to be used for framing the region.
Stroke The width and height of the Frame Region.
RegionData An area of memory containing an instance of the class RegionData.

Notes

See related C function FrameRegion.