typedef struct tagVECTORRECTANGLE
{
VECTOROBJECT Object;
VECTORPOINT Point[2];
VECTORPEN Pen;
VECTORBRUSH Brush;
} VECTORRECTANGLE, * pVECTORRECTANGLE;
The VECTORRECTANGLE structure holds information about a vector rectangle object.
Abstract object.
An array of VECTORPOINT structures that contain the beginning and ending points of the diagonal of a rectangle in space.
VECTORPEN structure that contains information about the pen to use when drawing the vector line object.
VECTORBRUSH structure that contains information about the brush to use when drawing the vector line object.
nSize of the Object member must be the sizeof this structure.
nType of the Object member must be VECTOR_RECTANGLE.
pVECTORRECTANGLE is a pointer to a VECTORRECTANGLE structure.