ImageClearrect()

Clears the bounding rectangle with the current background color

Usage

BOOLEAN = ImageClearrect( name, x, y, width, height )
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

Calling

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

ImageClearrect(
   name=?, 
   x=?, 
   y=?, 
   width=?, 
   height=?
);

Supports passing parameters as a structure using ArgumentCollection:

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