Jump to content

WpQueryCloseDrawer: Difference between revisions

From EDM2
Created page with "{{DISPLAYTITLE:wpQueryCloseDrawer}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method determines whether the drawer closes after an object in the drawer is opened from the drawer. ==Syntax== _wpQueryCloseDrawer(somSelf) ==Parameters== ;''somSelf'' (WPLaunchPad *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPLaunchPad. ==Returns== ;''fState'' (BOOL) -..."
 
(No difference)

Latest revision as of 17:47, 24 November 2025

This method is specific to version 3, or higher, of the OS/2 operating system.

This instance method determines whether the drawer closes after an object in the drawer is opened from the drawer.

Syntax

_wpQueryCloseDrawer(somSelf)

Parameters

somSelf (WPLaunchPad *) - input
Pointer to the object on which the method is being invoked.
Points to an object of class WPLaunchPad.

Returns

fState (BOOL) - returns
Flag indicating whether to close the drawer.
  • TRUE The drawer closes.
  • FALSE The drawer does not close.

How to Override

This method can be overridden to force a particular value.

Usage

This method is not covered in the provided text.

Remarks

This method is not covered in the provided text.

Example Code

#define INCL_WINWORKPLACE
#include <os2.h>

WPLaunchPad *somSelf; /* Pointer to the object on which the method is being invoked. */
BOOL fState; /* Flag indicating whether to close the drawer. */

fState = _wpQueryCloseDrawer(somSelf);

Related Methods