Library Apps NextCanvas Shapes Ellipse

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 and Y1 properties inside the Object Inspector represents the first corner and X2 and Y2 the second.

Example code generated by this tool looks like:

pas
Pen.Color := clFuchsia;
Brush.Color := clYellow;
Ellipse(2, 2, 16, 16);

Sign in