ClientToScreen (Windows CE 5.0)

Send Feedback

This function converts the client coordinates of a specified point to screen coordinates.

BOOLClientToScreen( HWNDhWnd, LPPOINTlpPoint);

Parameters

  • hWnd
    Handle to the window whose client area is used for the conversion.

  • lpPoint
    Long pointer to a POINT structure that contains the client coordinates to be converted.

    The new screen coordinates are copied into this structure if the function succeeds.

Return Values

Nonzero indicates success.

Zero indicates failure.

To get extended error information, call GetLastError.

Code Example

The following code example converts the coordinates of a mouse click or stylus tap to screen coordinates and uses the new coordinates in a calculation.

    switch (message)
    {
        case WM_LBUTTONDOWN:
        case WM_RBUTTONDOWN:
            pt.x = LOWORD(lParam);
            pt.y = HIWORD(lParam);
            ClientToScreen( hStatusWnd, &pt );
            SetCapture(hStatusWnd);
            GetWindowRect(hStatusWnd,&drc);
            ptdif.x = pt.x - drc.left;
            ptdif.y = pt.y - drc.top;
            break;
    }

Remarks

The ClientToScreen function replaces the client coordinates in the POINT structure with the screen coordinates. The origin of the new coordinates depends on the window layout. For windows with a left-to-right layout, the new screen coordinates are relative to the upper-left corner of the screen; for windows with a right-to-left layout,they are relative to the upper-right corner of the screen.

All coordinates are in device units.

Requirements

OS Versions: Windows CE 1.0 and later.
Header: Winuser.h.
Link Library: Coredll.lib, Winmgr.lib.

See Also

MapWindowPoints | ScreenToClient | POINT

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.