ImageDrawroundrect()

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

Usage

BOOLEAN = ImageDrawroundrect( name, x, y, width, height, arcwidth, archeight, 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
arcwidth the horizontal diameter of the corner
archeight the vertical diameter of the corner
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:

ImageDrawroundrect(
   name=?, 
   x=?, 
   y=?, 
   width=?, 
   height=?, 
   arcwidth=?, 
   archeight=?, 
   filled=?
);

Supports passing parameters as a structure using ArgumentCollection:

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