ImageDrawarc()

Draws the outline of a circular or elliptical arc covering the specified rectangle. Optionally filling it in.

Usage

BOOLEAN = ImageDrawarc( name, x, y, width, height, startangle, arcangle, filled )
Argument Summary
name the image object
x the x coordinate of the upper-left corner of the arc to be drawn
y the y coordinate of the upper-left corner of the arc to be drawn
width the width of the arc to be drawn
height the height of the arc to be drawn
startangle the beginning angle
arcangle the angular extent of the arc, relative to the start angle
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:

ImageDrawarc(
   name=?, 
   x=?, 
   y=?, 
   width=?, 
   height=?, 
   startangle=?, 
   arcangle=?, 
   filled=?
);

Supports passing parameters as a structure using ArgumentCollection:

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