Jump to content

WpSetDisplaySmallIcons: Difference between revisions

From EDM2
Created page with "{{DISPLAYTITLE:wpSetDisplaySmallIcons}} This method is specific to version 3, or higher, of the OS/2 operating system. This instance method sets whether small or normal sized icons are displayed on the Toolbar and its drawers. ==Syntax== wpSetDisplaySmallIcons(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) - inp..."
 
(No difference)

Latest revision as of 21:47, 24 November 2025

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

This instance method sets whether small or normal sized icons are displayed on the Toolbar and its drawers.

Syntax

wpSetDisplaySmallIcons(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 display small icons.
  • TRUE Display small icons.
  • FALSE Display normal-sized icons.

Returns

rc (none) - returns
There is no return value for this method.

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

wpSetDisplaySmallIcons(somSelf, fState);

Related Methods