Jump to content

WpQueryHideLaunchPadFrameCtls: Difference between revisions

From EDM2
Created page with "{{DISPLAYTITLE:wpQueryHideLaunchPadFrameCtls}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method determines whether the **system menu** and the **title bar** for the Toolbar are hidden. ==Syntax== _wpQueryHideLaunchPadFrameCtls(somSelf) ==Parameters== ;''somSelf'' (WPLaunchPad *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPLaunchPad. ==Returns== ;''fSta..."
 
(No difference)

Latest revision as of 02:52, 25 November 2025

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

This instance method determines whether the **system menu** and the **title bar** for the Toolbar are hidden.

Syntax

_wpQueryHideLaunchPadFrameCtls(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 Frame controls are hidden.
  • TRUE The frame controls are hidden.
  • FALSE The frame controls are not hidden.

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 Frame controls are hidden. */

fState = _wpQueryHideLaunchPadFrameCtls(somSelf);

Related Methods