wpQueryMinWindow
Appearance
This method is specific to version 3, or higher, of the OS/2 operating system.
This instance method returns the minimized window behavior of an object.
Syntax
_wpQueryMinWindow(somSelf)
Parameters
- somSelf (WPObject *) - input
- Pointer to the object on which the method is being invoked.
- Points to an object of class WPObject.
Returns
- ulMinWin (ULONG) - returns
- Flag indicating minimized window behavior. Possible values are described in the following list:
- MINWIN_DEFAULT System default.
- MINWIN_HIDDEN Minimized windows are hidden.
- MINWIN_VIEWER Minimized windows are placed in the viewer.
- MINWIN_DESKTOP Minimized windows are placed on the desktop.
How to Override
This method is generally not overridden.
Usage
This method is usually called by the system in order to retrieve an object's minimized window behavior.
Example Code
#define INCL_WINWORKPLACE #include <os2.h> WPObject *somSelf; /* Pointer to the object on which the method is being invoked. */ ULONG ulMinWin; /* Flag indicating minimized window behavior. */ ulMinWin = _wpQueryMinWindow(somSelf);