Partager via


Gdi::SetPixel_I

This method sets the pixel at the specified coordinates to the specified color.

static WINGDIAPI COLORREF WINAPI SetPixel_I(
  HDC hdc, 
  int X, 
  int Y, 
  COLORREF crColor
);

Parameters

  • hdc
    [in] Handle to the device context.
  • X
    [in] Integer that specifies the x-coordinate, in logical units, of the point to be set.
  • Y
    [in] Integer that specifies the y-coordinate, in logical units, of the point to be set.
  • crColor
    [in] COLORREF value that specifies the color to be used to paint the point.

Return Values

The RGB value that the function sets the pixel to indicates success. This value may differ from the color specified by crColor; this difference occurs when an exact match for the specified color cannot be found. –1 indicates failure. To get extended error information, call GetLastError.

Remarks

This method is an internal version of the SetPixel function.

The method fails if the pixel coordinates lie outside of the current clipping region.

Not all devices support the Gdi::SetPixel_I method. For more information, see Gdi::GetDeviceCaps_I.

Requirements

OS Versions: Windows CE .NET 4.0 and later.
Header: Gdi.hpp.

See Also

SetPixel | Gdi::GetDeviceCaps_I

Last updated on Wednesday, April 13, 2005

© 2005 Microsoft Corporation. All rights reserved.