<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > UI (User Interface) > Windows API > Win_SetLayeredWindowAttributes |
Description
The SetPixelV function sets the pixel at the specified coordinates to the closest approximation of the specified color.
The point must be in the clipping region and the visible part of the device surface.
Syntax
n = Win_SetPixelV(hDC, X, Y, lColor)
Returns
If the function succeeds, the return value is nonzero.
If the function fails, the return value is zero.
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/dd145079(v=vs.85).aspx
Restrictions
See also
Examples