Class
RadEllipseGeometry

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

RadEllipseGeometry()

Initializes a new instance of the ellipse geometry.

Declaration

cs-api-definition
public RadEllipseGeometry()

RadEllipseGeometry(Point, Size)

Initializes a new instance of the ellipse geometry.

Declaration

cs-api-definition
public RadEllipseGeometry(Point center, Size radius)

Parameters

center

Point

Specifies the center point of the ellipse geometry.

radius

Size

Specifies the radius of the ellipse geometry.

Properties

Center

Gets or sets the center point of the ellipse geometry.

Declaration

cs-api-definition
public Point Center { get; set; }

Property Value

Point

Radius

Gets or sets the radius of the ellipse geometry.

Declaration

cs-api-definition
public Size Radius { get; set; }

Property Value

Size