This documentation was styled with a demo skin from the Premium Pack 4 add-on for Help & Manual. The contents of the skin are encrypted and not configurable. You can only publish HM projects with this skin. You cannot edit it or change it.
This version is copyright and may only be used for local testing purposes. It may not be distributed.
Please purchase the full version of the Premium Pack to get the configurable skins and remove this notice. The package will also include the Toolbox configuration utility for Premium Pack skins.
Description
The SetPixel function sets the pixel at the specified coordinates to the specified color.
Syntax
n = Win_SetPixel(hDC, X, Y, lColor)
Returns
If the function succeeds, the return value is the RGB value that the function sets the pixel to. This value may differ from the color specified by crColor; that occurs when an exact match for the specified color cannot be found.
If the function fails, the return value is -1.
This can be the following value.
Parameters
Name |
Type |
Optional |
Meaning |
hDC |
Number |
No |
A handle to the device context. |
X |
Number |
No |
The x-coordinate, in logical units, of the point to be set. |
Y |
Number |
No |
The y-coordinate, in logical units, of the point to be set. |
lColor |
Number |
No |
The color to be used to paint the point |
Remarks
For additional info, please refer to MS documentation at: http://msdn.microsoft.com/en-us/library/windows/desktop/dd145078(v=vs.85).aspx
Restrictions
See also
Examples