 |
GetProp ..msdn Add comment W32 Constants Translate this page |
 |
 |
|
Retrieves a data handle from the property list of the specified window. The character string identifies the handle to be retrieved. The string and handle must have been added to the property list by a previous call to the SetProp function. |
 |
 |
| Code examples: |
 |
|
|
 |
 |
| Declaration: |
 |
 |
HANDLE GetProp(
HWND hWnd, // handle to window
LPCTSTR lpString // atom or string
);
|
 |
 |
 |
| FoxPro declaration: |
 |
 |
DECLARE INTEGER GetProp IN user32;
INTEGER hWnd,;
STRING lpStr
|
 |
 |
 |
| Parameters: |
 |
hWnd
[in] Handle to the window whose property list is to be searched.
lpString
[in] Pointer to a null-terminated character string or contains an atom that identifies a string. |
 |
 |
| Return value: |
 |
| If the property list contains the string, the return value is the associated data handle. Otherwise, the return value is NULL. |
 |
 |
| My comment: |
 |
Windows 7:
If a window owns an explicit Application User Model ID (AppUserModelID), calling the GetProp for this window with property name "{9F4C2855-9F79-4B39-A8D0-E1D42DE1D5F3} 5" returns valid data handle to IPropertyStore (?). |
 |
 |
| Word Index links for the GetProp : |
 |
|
|
 |
 |
| Translate this page: |
 |
|
 |
 |
| • |
 |
| Created: | 2001-12-02 19:03:54 | | Modified: | 2011-01-16 21:46:46 | Visited in last 7 days: 19 |