AnyPopup function (winuser.h)
Indicates whether an owned, visible, top-level pop-up, or overlapped window exists on the screen. The function searches the entire screen, not just the calling application's client area.
This function is provided only for compatibility with 16-bit versions of Windows. It is generally not useful.
Syntax
BOOL AnyPopup();
Return value
Type: BOOL
If a pop-up window exists, the return value is nonzero, even if the pop-up window is completely covered by other windows.
If a pop-up window does not exist, the return value is zero.
Remarks
This function does not detect unowned pop-up windows or windows that do not have the WS_VISIBLE style bit set.
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