The REQRESIZE structure contains the requested size of a rich edit control. A rich edit control sends this structure to its parent window as part of an EN_REQUESTRESIZE notification message.
typedef struct _reqresize {
NMHDR nmhdr;
RECT rc;
} REQRESIZE;
Members
nmhdr
Notification header.
rc
Requested new size.
See Also