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 VECTORPOINT structures that contains 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. |