typedef struct _CONTAINERRECTDATA
{
L_INT nSize;
VECTORPOINT vptRect[2];
} CONTAINERRECTDATA, *pCONTAINERRECTDATA;
The CONTAINERRECTDATA structure holds the coordinates of a rectangle object.
Size of this structure.
An array of structures that contain the upper-left and lower-right points of the rectangle. The contents of the array are as follows:
Value | Meaning |
---|---|
vptRect[0].x | x-coordinate of the upper-left corner of the rectangle. |
vptRect[0].y | y-coordinate of the upper-left corner of the rectangle. |
vptRect[1].x | x-coordinate of the lower-right corner of the rectangle. |
vptRect[1].y | y-coordinate of the lower-right corner of the rectangle. |