Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CWnd::OnSizing(UNIT fwSize, LPRECT pRect)

Status
Not open for further replies.

raochetan

Programmer
Aug 20, 2001
62
0
0
IN
Can anyone tell me what are the values of fwSize when a window is resized either from top, botton, left and right.

Thanks in advance

raochetan
 
It is fwSide instead of fwSize.

Sorry for the mistake

raochetan
 
fwSide
Value of wParam. Indicates which edge of the window is being sized. This parameter can be a combination of the following values: Value Meaning
WMSZ_BOTTOM Bottom edge
WMSZ_BOTTOMLEFT Bottom-left corner
WMSZ_BOTTOMRIGHT Bottom-right corner
WMSZ_LEFT Left edge
WMSZ_RIGHT Right edge
WMSZ_TOP Top edge
WMSZ_TOPLEFT Top-left corner
WMSZ_TOPRIGHT Top-right corner

Always useful to look in MSDN...
:) Hope that this helped! ;-)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top