Jump to content

wpFindMinWindow

From EDM2
Revision as of 06:42, 16 November 2025 by Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpFindMinWindow}} 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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.

Related Methods