EnumPropsExA function (winuser.h)
Enumerates all entries in the property list of a window by passing them, one by one, to the specified callback function. EnumPropsEx continues until the last entry is enumerated or the callback function returns FALSE.
Syntax
int EnumPropsExA(
[in] HWND hWnd,
[in] PROPENUMPROCEXA lpEnumFunc,
[in] LPARAM lParam
);
Parameters
[in] hWnd
Type: HWND
A handle to the window whose property list is to be enumerated.
[in] lpEnumFunc
Type: PROPENUMPROCEX
A pointer to the callback function. For more information about the callback function, see the PropEnumProcEx function.
[in] lParam
Type: LPARAM
Application-defined data to be passed to the callback function.
Return value
Type: int
The return value specifies the last value returned by the callback function. It is -1 if the function did not find a property for enumeration.
Remarks
An application can remove only those properties it has added. It must not remove properties added by other applications or by the system itself.
Examples
For an example, see Listing Window Properties for a Given Window.
Note
The winuser.h header defines EnumPropsEx as an alias which automatically selects the ANSI or Unicode version of this function based on the definition of the UNICODE preprocessor constant. Mixing usage of the encoding-neutral alias with code that not encoding-neutral can lead to mismatches that result in compilation or runtime errors. For more information, see Conventions for Function Prototypes.
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows 2000 Professional [desktop apps only] |
Minimum supported server | Windows 2000 Server [desktop apps only] |
Target Platform | Windows |
Header | winuser.h (include Windows.h) |
Library | User32.lib |
DLL | User32.dll |
See also
Conceptual
Reference