Jump to content

wpQueryDisplaySmallIcons

From EDM2
Revision as of 21:47, 24 November 2025 by Martini (talk | contribs) (Created page with "{{DISPLAYTITLE:wpQueryDisplaySmallIcons}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method determines whether the small icons are displayed on the Toolbar. ==Syntax== _wpQueryDisplaySmallIcons(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 in...")
(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 instance method determines whether the small icons are displayed on the Toolbar.

Syntax

_wpQueryDisplaySmallIcons(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 small icons are displayed.
  • TRUE Small icons are displayed.
  • FALSE Normal-sized icons are displayed.

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 small icons are displayed. */

fState = _wpQueryDisplaySmallIcons(somSelf);

Related Methods