WpQueryFloatOnTop: Difference between revisions
Appearance
Created page with "{{DISPLAYTITLE:wpQueryFloatOnTop}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method determines whether the Toolbar floats on top of all other windows. ==Syntax== _wpQueryFloatOnTop(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 whe..." |
(No difference)
|
Latest revision as of 02:30, 25 November 2025
This method is specific to version 3, or higher, of the OS/2 operating system.
This instance method determines whether the Toolbar floats on top of all other windows.
Syntax
_wpQueryFloatOnTop(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 the Toolbar floats on top of all other windows.
- TRUE The Toolbar floats on top.
- FALSE The Toolbar does not float on top.
How to Override
This method can be overridden to force a particular value.
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 the Toolbar floats on top of all other windows. */ fState = _wpQueryFloatOnTop(somSelf);