Group: Window Property - Library: user32
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.
How to write and read Window Properties for the specified window
HANDLE GetProp(
HWND hWnd, // handle to window
LPCTSTR lpString // atom or string
);
DECLARE INTEGER GetProp IN user32;
INTEGER hWnd,;
STRING lpStr
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.
If the property list contains the string, the return value is the associated data handle. Otherwise, the return value is NULL.
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 (?).