ZebraGraphicsDrawEllipse Method 
             | 
          
        
         
            Draws an ellipse at the specified coordinates.
            
 
    Namespace: 
   Zebra.Sdk.Card.Graphics
    Assembly:
   SdkApi_Card_Desktop (in SdkApi_Card_Desktop.dll) Version: 2.14.1989
Syntaxvoid DrawEllipse(
	int x,
	int y,
	int width,
	int height,
	int lineThickness,
	Nullable<Color> lineColor,
	Nullable<Color> fillColor
)
Sub DrawEllipse ( 
	x As Integer,
	y As Integer,
	width As Integer,
	height As Integer,
	lineThickness As Integer,
	lineColor As Nullable(Of Color),
	fillColor As Nullable(Of Color)
)
void DrawEllipse(
	int x, 
	int y, 
	int width, 
	int height, 
	int lineThickness, 
	Nullable<Color> lineColor, 
	Nullable<Color> fillColor
)
Parameters
- x
 - Type: SystemInt32
The x coordinate. - y
 - Type: SystemInt32
The y coordinate. - width
 - Type: SystemInt32
The width of the ellipse. - height
 - Type: SystemInt32
The height of the ellipse. - lineThickness
 - Type: SystemInt32
The line thickness of the ellipse. - lineColor
 - Type: SystemNullableColor
The line color of the ellipse. - fillColor
 - Type: SystemNullableColor
The fill color of the ellipse. 
Exceptions
See Also