WpSetHideLaunchPadFrameCtls: Difference between revisions
Appearance
Created page with "{{DISPLAYTITLE:wpSetHideLaunchPadFrameCtls}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method hides the system menu and the title bar for the Toolbar. ==Syntax== wpSetHideLaunchPadFrameCtls(somSelf, fState) ==Parameters== ;''somSelf'' (WPLaunchPad *) - input :Pointer to the object on which the method is being invoked. :Points to an object of class WPLaunchPad. ;''fState'' (BOOL) - input :Flag indicating..." |
(No difference)
|
Latest revision as of 02:58, 25 November 2025
This method is specific to version 3, or higher, of the OS/2 operating system.
This instance method hides the system menu and the title bar for the Toolbar.
Syntax
wpSetHideLaunchPadFrameCtls(somSelf, fState)
Parameters
- somSelf (WPLaunchPad *) - input
- Pointer to the object on which the method is being invoked.
- Points to an object of class WPLaunchPad.
- fState (BOOL) - input
- Flag indicating whether to hide frame controls.
- TRUE Hide the frame controls.
- FALSE Do not hide the frame controls.
Returns
- rc (none) - 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> WPLaunchPad *somSelf; /* Pointer to the object on which the method is being invoked. */ BOOL fState; /* Flag indicating whether to hide frame controls. */ wpSetHideLaunchPadFrameCtls(somSelf, fState);