|
Window Position
A window's position is defined as the coordinates of its upper left corner.
These coordinates, sometimes called window coordinates, are always relative to
the upper left corner of the screen or, for a child window, the upper left corner
of the parent window's client area. For example, a top-level window having the
coordinates (10,10) is placed 10 pixels to the right of the upper left corner
of the screen and 10 pixels down from it. A child window having the coordinates
(10,10) is placed 10 pixels to the right of the upper left corner of its
parent window's client area and 10 pixels down from it.
The WindowFromPoint function retrieves the handle of the window occupying a particular point on
the screen. Similarly, the ChildWindowFromPoint and ChildWindowFromPointEx functions retrieve the handle of the child window occupying a particular
point in the parent window's client area. Although ChildWindowFromPointEx can ignore invisible, disabled, and transparent child windows, ChildWindowFromPoint cannot.
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|