A | B | C |  D | E | F |  G | H | I |  J | K | L |  M | N | O |  P | Q | R |  S | T | U |  V | W | X |  Y | Z



EnumProps

The EnumProps function enumerates all entries in the property list of a window by passing them, one by one, to the specified callback function. EnumProps continues until the last entry is enumerated or the callback function returns FALSE.

VB4-32,5,6
Declare Function EnumProps Lib "user32" Alias "EnumPropsA" (ByVal hWnd As Long, ByVal lpEnumFunc As Long) As Long

Operating Systems Supported
Requires Windows NT 3.1 or later; Requires Windows 95 or later

Library
User32

Parameter Information
- hWnd
Identifies the window whose property list is to be enumerated.

- lpEnumFunc
Points to the callback function. For more information about the callback function, see the PropEnumProc function.

Return Values
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.

Last update: 07 April 2006