You can easily draw ellipses using the DrawEllipse methods of the Graphic class.
To draw an ellipse, call the DrawEllipse method of the Graphic object. The Pen object is passed as one of the arguments to the DrawEllipse method.
The following is the syntax of DrawEllipse method:
| DrawEllipse(ByVal pen As System.Drawing.Pen, ByVal x As Single, ByVal y As Single, ByVal width As Single, ByVal height As Single) |
The following code example demonstrates how to draw an ellipse: