ImageDrawrect()

Draws either a filled or a outline rectangle in the current active color

Usage

BOOLEAN = ImageDrawrect( name, x, y, width, height, filled )
Argument Summary
name the image object
x the left of the bounding rectangle
y the right of the bounding rectangle
width the width of the rectangle
height the height of the rectangle
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:

ImageDrawrect(
   name=?, 
   x=?, 
   y=?, 
   width=?, 
   height=?, 
   filled=?
);

Supports passing parameters as a structure using ArgumentCollection:

ImageDrawrect( ArgumentCollection={
   name : ?, 
   x : ?, 
   y : ?, 
   width : ?, 
   height : ?, 
   filled : ?
} );