ImageDrawpoint()

Draws a line, using the current color, between the points (x1, y1) and (x2, y2) in this graphics context's coordinate system

Usage

BOOLEAN = ImageDrawpoint( name, x, y )
Argument Summary
name the image object
x the point's x coordinate
y the point's y coordinate

Calling

Supports named-parameter calling allowing you to use the function like:

ImageDrawpoint(
   name=?, 
   x=?, 
   y=?
);

Supports passing parameters as a structure using ArgumentCollection:

ImageDrawpoint( ArgumentCollection={
   name : ?, 
   x : ?, 
   y : ?
} );