ImageDrawlines()

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

Usage

BOOLEAN = ImageDrawlines( name, xarray, yarray, isploygon, filled )
Argument Summary
name the image object
xarray an array of x points
yarray an array of y points
isploygon a flag if the lines are connected; default to false [optional]
filled a flag to determine if the rectangle is filled with the current color; default to false [optional]

Calling

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

ImageDrawlines(
   name=?, 
   xarray=?, 
   yarray=?, 
   isploygon=?, 
   filled=?
);

Supports passing parameters as a structure using ArgumentCollection:

ImageDrawlines( ArgumentCollection={
   name : ?, 
   xarray : ?, 
   yarray : ?, 
   isploygon : ?, 
   filled : ?
} );