New to Telerik UI for .NET MAUIStart a free 30-day trial

Defines an ellipse geometry with a specified center point and radii. This class provides properties to set and retrieve the center and radius of the ellipse, and notifies when these properties change. Useful for drawing and manipulating ellipse shapes in graphics or UI scenarios.

Definition

Constructors

Initializes a new instance of the ellipse geometry.

C#
public RadEllipseGeometry()

Initializes a new instance of the ellipse geometry.

C#
public RadEllipseGeometry(Point center, Size radius)
Parameters:centerPoint

Specifies the center point of the ellipse geometry.

radiusSize

Specifies the radius of the ellipse geometry.

Properties

Center

Point

Gets or sets the center point of the ellipse geometry.

C#
public Point Center { get; set; }

Radius

Size

Gets or sets the radius of the ellipse geometry.

C#
public Size Radius { get; set; }