SIZE Structure
The SIZE structure has the following form:
typedef struct tagSIZE {
int cx;
int cy;
} SIZE;
The SIZE structure specifies the width and height of a rectangle.
Members
cx
Specifies the x-extent when a function returns.
cy
Specifies the y-extent when a function returns.
Comments
The rectangle dimensions stored in this structure can correspond to viewport extents, window extents, text extents, bitmap dimensions, or the aspect-ratio filter for some extended functions.
See Also CSize