Fills a circular or elliptical arc covering the specified
rectangle.
Namespace: Imsl.Chart2DAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public virtual void FillArc(
int x,
int y,
int width,
int height,
int startAngle,
int arcAngle
)
Public Overridable Sub FillArc (
x As Integer,
y As Integer,
width As Integer,
height As Integer,
startAngle As Integer,
arcAngle As Integer
)
public:
virtual void FillArc(
int x,
int y,
int width,
int height,
int startAngle,
int arcAngle
)
abstract FillArc :
x : int *
y : int *
width : int *
height : int *
startAngle : int *
arcAngle : int -> unit
override FillArc :
x : int *
y : int *
width : int *
height : int *
startAngle : int *
arcAngle : int -> unit
Parameters
- x
- Type: SystemInt32
An int which specifies the x-coordinate of the upper-left
corner of the rectangular region that defines the ellipse from
which the arc is drawn.
- y
- Type: SystemInt32
An int which specifies the y-coordinate of the upper-left
corner of the rectangular region that defines the ellipse from
which the arc is drawn.
- width
- Type: SystemInt32
An int which specifies the width of the rectangular region
that defines the ellipse from which the arc is drawn.
- height
- Type: SystemInt32
An int which specifies the height of the rectangular region
that defines the ellipse from which the arc is drawn.
- startAngle
- Type: SystemInt32
An int which specifies the starting angle of the arc,
measured in degrees clockwise from the x-axis.
- arcAngle
- Type: SystemInt32
An int which specifies an angle in degrees measured
counter-clockwise from the startAngle parameter
to the ending point of the arc.
Remarks
The center of the arc is center of this rectangle.
startAngle = 0 is equivalent to the 3-o'clock
position.
DrawArc draws the arc from startAngle to startAngle+arcAngle. A positive arcAngle indicates a
counter-clockwise rotation. A negative arcAngle
implies a clockwise rotation.
See Also