SetSysColors (Windows CE 5.0)

Send Feedback

This function sets the colors for one or more display elements.

BOOL WINAPI SetSysColors( int cElements, CONST INT* lpaElements, CONST COLORREF* lpaRgbValues); 

Parameters

  • cElements
    Specifies the number of display elements in the array pointed to by the lpaElements parameter.
  • lpaElements
    Long pointer to an array of integers that specify the display elements to be changed. For a list of display elements, see GetSysColor.
  • lpaRgbValues
    Long pointer to an array of unsigned long integers that contains the new red, green, blue (RGB) color value for each display element in the array pointed to by the lpaElements parameter.

Return Values

Nonzero indicates success. Zero indicates failure. To get extended error information, call GetLastError.

Remarks

The SetSysColors function sends a WM_SYSCOLORCHANGE message to all windows to inform them of the change in color. It also directs the system to repaint the affected portions of all currently visible windows.

The SetSysColors function changes the current session only. The new colors are not saved when the system terminates.

Requirements

OS Versions: Windows CE 2.0 and later.
Header: Winuser.h.
Link Library: Winmgr.lib.

See Also

GetSysColor

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.