 |
 |
 |
|
|  |  |
 |
LPtoDP ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
Converts logical coordinates into device coordinates. |
 |  | | Code examples: |  | |
|
 |  | | Declaration: |  |  |
BOOL LPtoDP(
HDC hdc, // handle to device context
LPPOINT lpPoints, // array of points
int nCount // count of points in array
);
|
 |  |  | | FoxPro declaration: |  |  |
DECLARE INTEGER LPtoDP IN gdi32;
INTEGER hdc,;
STRING @lpPoints,;
INTEGER nCount
|
 |  |  | | Parameters: |  | hdc
[in] Handle to the device context.
lpPoints
[in/out] Pointer to an array of POINT structures. The x-coordinates and y-coordinates contained in each of the POINT structures will be transformed.
nCount
[in] Specifies the number of points in the array. |
 |  | | Return value: |  | | If the function succeeds, the return value is nonzero. |
 |  | | My comment: |  | The conversion depends on the mapping mode of the device context, the settings of the origins and extents for the window and viewport, and the world transformation.
LOCAL hWindow, hDC, cBuffer
hWindow = _screen.HWnd
hDC = GetWindowDC(hWindow)
cBuffer = num2dword(100) + num2dword(100)
? LPtoDP(hDC, @cBuffer, 1)
? buf2dword(SUBSTR(cBuffer,1,4)),;
buf2dword(SUBSTR(cBuffer,5,4))
= ReleaseDC(hWindow, hDC)
See also: DPtoLP
|
 |  | | Word Index links for the LPtoDP : |  | |
|
 |  | | Translate this page: |  | |  |  | | • |  | | Created: | 2007-04-27 12:56:39 | | Modified: | 2007-04-27 12:59:53 | Visited in last 7 days: 10 |
|
 |
 |
 |
 |
Copyright © 2001-2013
News2News, Inc.
Before reproducing or distributing any data from this site please ask for an approval from its owner. Unless otherwise specified, this page is for your personal and non-commercial use.
The information on this page is presented AS IS, meaning that you may use it at your own risk.
Microsoft Visual FoxPro
and Windows are trade marks
of Microsoft Corp.
All other trademarks are the property of their respective owners.
Privacy policy
|
 |
 |
 |
Credits: PHP (4.4.9), an HTML-embedded scripting language,
MySQL (5.1.55-log), the Open Source standard SQL database,
AceHTML Freeware
Version 4, freeware HTML Editor of choice. Hosted by Korax Online Inc. |
 |
 |
|
 |
 |
|
|