What is the meaning of client coordinates in SetWindowPos
Posted
by
user1775315
on Stack Overflow
See other posts from Stack Overflow
or by user1775315
Published on 2012-12-01T12:53:20Z
Indexed on
2012/12/01
17:04 UTC
Read the original article
Hit count: 131
The documentation for SetWindowPos says the following for the X and Y parameters:
X [in]
Type: int
The new position of the left side of the window, in client coordinates.
Y [in]
Type: int
The new position of the top of the window, in client coordinates.
By "client coordinates", does it mean that the parameters specify the position of the client area of the window, or that they specify the position of the window (not the client area) relative to the parent window's client area? Or something else?
© Stack Overflow or respective owner