drawEllipse
procedure drawEllipse(x, y, width, height: integer);
Draws the outline of an ellipse covering the specified rectangle.
begin
drawEllipse(0, 0, getWidth, getHeight);
repaint;
delay(1000);
end.
See also: fillEllipse, getWidth, getHeight, setColor, repaint