Here is a summary of how to draw a single pixel:
directly onto the form:
Form.Line(x,y,x+1,y+1,color,BF
with a Drawer object from the ImageLib or a DrawerEx object from the ImageLibEx onto the Form or onto a Bitmap:
Drawer.FillRectangle2(brush.Value,x,y,1,1)
with a Bitmap object from the ImageLib or a BitmapEx object from the ImageLibEx onto a bitmap:
Bitmap.SetPixel(x,y,color)
The ImageLibEx is available only for licensed users.
You can choose what function to use depending on what you want to draw, where and how.
Attached a small test program.
Best regards.