wpSetMinWindow
Appearance
This method is specific to version 3, or higher, of the OS/2 operating system.
This instance method sets the minimized window behavior of an object.
Syntax
wpSetMinWindow(somSelf, ulMinWindow)
Parameters
- somSelf (WPObject *) - input
- Pointer to the object on which the method is being invoked.
- Points to an object of class WPObject.
- ulMinWindow (ULONG) - input
- Flag indicating the 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.
Returns
There is no return value for this method.
How to Override
This method is generally not overridden.
Example Code
#define INCL_WINWORKPLACE #include <os2.h> WPObject *somSelf; /* Pointer to the object on which the method is being invoked. */ ULONG ulMinWindow; /* Flag indicating the minimized window behavior. */ wpSetMinWindow(somSelf, ulMinWindow);