Microsoft Foundation Classes (mfc.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
CPalette::SetPaletteEntries
CPalette                                    Up Contents Index Back
──Microsoft Foundation Classes──────────────────────────────────────────────
 
  UINT SetPaletteEntries( UINT nStartIndex, UINT nNumEntries,
                          LPPALETTEENTRY lpPaletteColors );
 
  Parameter         Description
 
  <nStartIndex>     Specifies the first entry in the logical palette to be
                    set.
 
  <nNumEntries>     Specifies the number of entries in the logical palette
                    to be set.
 
  <lpPaletteColors> Points to an array of PALETTEENTRY data structures to
                    receive the palette entries. The array must contain at
                    least as many data structures as specified by
                    <nNumEntries>.
 
  Remarks
 
  Sets RGB color values and flags in a range of entries in a logical
  palette.
 
  If the logical palette is selected into a device context when the
  application calls SetPaletteEntries, the changes will not take effect
  until the application calls CDC::RealizePalette.
 
  Return Value
 
  The number of entries set in the logical palette, or 0 if the function
  failed.
 
  See Also
 
  CDC::RealizePalette, ::SetPaletteEntries
 
 
                                     -♦-