* screen coordinates.
* @return converted point of the client-area coordinates.
*/
public static Point screenToClient(int handle, Point point)
{
POINT pt = new POINT();
pt.x = point.x;
pt.y = point.y;
OS.ScreenToClient(handle, pt);
return new Point(pt.x, pt.y);
}