Draws the arc.
Syntax
'Declaration
Sub DrawArc( _
ByVal As Pen, _
ByVal As Single, _
ByVal As Single, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer, _
ByVal As Integer _
)
'Usage
Dim instance As IBorderGraphics
Dim cornerPen As Pen
Dim x As Single
Dim y As Single
Dim width As Integer
Dim height As Integer
Dim startAngle As Integer
Dim sweepAngle As Integer
instance.DrawArc(cornerPen, x, y, width, height, startAngle, sweepAngle)
void DrawArc(
Pen ,
float ,
float ,
int ,
int ,
int ,
int
)
Parameters
- cornerPen
- Corner pen
- x
- X-coordinate
- y
- Y-coordinate
- width
- Width
- height
- Height
- startAngle
- Start angle
- sweepAngle
- Sweep angle
See Also