API.DrawEllipse Method

Draws an ellipse or elliptical arc
Public Shared Function DrawEllipse( _ 
ByVal x As Double, _ 
ByVal y As Double, _ 
ByVal r1 As Double, _ 
ByVal r2 As Double, _ 
Optional ByVal angle As Double = 0, _ 
Optional ByVal startang As Double = 0, _ 
Optional ByVal endang As Double = Calc.TwoPI, _ 
Optional ByVal color As Integer = 258 _ 
) As Object
This language is not supported or no code example is available.
public static object DrawEllipse( 
double x
double y
double r1
double r2
double angle = 0, 
double startang = 0, 
double endang = Calc.TwoPI, 
int color = 258 
)
This language is not supported or no code example is available.
public:  
static object^ DrawEllipse( 
double x
double y
double r1
double r2
double angle
double startang
double endang
int color 
)
This language is not supported or no code example is available.
public static function DrawEllipse( 
x : double
y : double
r1 : double
r2 : double
angle : double
startang : double
endang : double
color : int 
) : object;
This language is not supported or no code example is available.

Parameters

x
double

Center X

y
double

Center Y

r1
double

Radius 1

r2
double

Radius 2

angle
double

Rotation angle (radians)

startang
double

Start angle for elliptical arc default is 0

endang
double

End angle for elliptical arc default is 2*PI

color
int

Color

Return Value

object

En ellipse

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8

In this article

Definition