Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 1.01 KB

RemoveProp.md

File metadata and controls

44 lines (30 loc) · 1.01 KB

Home

Function name : RemoveProp

Group: Window Property - Library: user32


The RemoveProp function removes an entry from the property list of the specified window. The specified character string identifies the entry to be removed.


Declaration:

HANDLE RemoveProp(
  HWND hWnd,         // handle to window
  LPCTSTR lpString   // atom or string
);  

FoxPro declaration:

DECLARE INTEGER RemoveProp IN user32;
	INTEGER hWnd,;
	STRING lpString
  

Parameters:

hWnd [in] Handle to the window whose property list is to be changed.

lpString [in] Pointer to a null-terminated character string or contains an atom that identifies a string.


Return value:

The return value identifies the specified data. If the data cannot be found in the specified property list, the return value is NULL.