[<<Previous Entry]
[^^Up^^]
[Next Entry>>]
[Menu]
[About The Guide]
RemoveProp( hWnd, cnStringAtom )-> <lSuccess>
------------------------------------------------------------------------------
PARAMETER:
<hWnd> Is the handle that identifies the window whose property
list is to be changed
<cnStringAtom> Is either string, or an atom that specifies a string that
identifies the handle to be removed.
RETURNS:
<lSuccess> is TRUE if the function is successful
DESCRIPTION:
The RemoveProp function removes an entry from the property list of the
given window. An application can only remove those properties that it has
added using SetProp(). It should not remove properties added by other
applications or by Windows itself.
EXAMPLE:
+--------------------------------------------------------------+
| /* Store a number within oWnd */ |
| SetProp( oWnd:hWnd, "MYPROP", 1999 ) |
| |
| /* remove the Property again */ |
| RemoveProp( oWnd:hWnd, "MYPROP" ) |
+--------------------------------------------------------------+
SOURCE:
SOURCE\WINAPI\PROP.C
See Also:
GetProp
GlobalAddAtom
SetProp
This page created by ng2html v1.05, the Norton guide to HTML conversion utility.
Written by Dave Pearson