Ellipse
This tool creates an ellipse that can have both border and fill. Coordinates of both corners can be adjusted via mouse or within the Object Inspector.
X1
andY1
properties inside the Object Inspector represents the first corner andX2
andY2
the second.
Example code generated by this tool looks like:
pas
Pen.Color := clFuchsia; Brush.Color := clYellow; Ellipse(2, 2, 16, 16);