FMX.Graphics.TPathData.AddEllipse

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure AddEllipse(const ARect: TRectF);

C++

void __fastcall AddEllipse(const System::Types::TRectF &ARect);

Properties

Type Visibility Source Unit Parent
procedure
function
public
FMX.Graphics.pas
FMX.Graphics.hpp
FMX.Graphics TPathData

Description

Appends an ellipse defined by a bounding rectangle structure to the current TPathData.

The ARect parameter specifies a structure that defines the boundaries of the ellipse.

To move the start point of the ellipse, call MoveTo or MoveToRel before calling AddEllipse.

AddEllipse splits the ellipse in simple figures and adds to Points the points needed to represent them.

To find the last point of the TPathData, call the LastPoint method.

See Also

Code Examples