REQRESIZE  HO2CN_ 

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

EN_REQUESTRESIZE496U_VG