wpFindMinWindow
Appearance
This method is specific to version 3, or higher, of the OS/2 operating system.
This method returns the minimized window object that corresponds to the given frame window handle.
Syntax
_wpFindMinWindow(somSelf, hwndFrame)
Parameters
- somSelf (WPMinWinViewer *) - input
- Pointer to the object on which the method is being invoked.
- Points to an object of class WPMinWinViewer.
- hwndFrame (HWND) - input
- Frame window handle.
Returns
- Object (WPObject *) - returns
- Pointer to the object that represents the minimized window.
- A return value of **NULL** indicates that no object exists.
How to Override
This method is generally not overridden.
Usage
This method is not covered in the provided text.
Example Code
#define INCL_WINWORKPLACE #include <os2.h> WPMinWinViewer *somSelf; /* Pointer to the object on which the method is being invoked. */ HWND hwndFrame; /* Frame window handle. */ WPObject *Object; /* Pointer to the object that represents the minimized window. */ Object = _wpFindMinWindow(somSelf, hwndFrame);
Remarks
This method is not covered in the provided text.