ImageDrawbeveledrect()

Paints a 3-D highlighted rectangle filled with the current color. The edges of the rectangle will be highlighted so that it appears as if the edges were beveled and lit from the upper left corner. The colors used for the highlighting effect will be determined from the current color.

Usage

BOOLEAN = ImageDrawbeveledrect( name, x, y, width, height, raised, filled )
Argument Summary
name the image object
x the x coordinate of the upper-left corner of the rectangle to be drawn
y the y coordinate of the upper-left corner of the rectangle to be drawn
width the width of the rectangle to be drawn
height the height of the rectangle to be drawn
raised a flag that determines whether the rectangle appears to be raised above the surface or etched into the surface
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:

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

Supports passing parameters as a structure using ArgumentCollection:

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