Class SVGEllipseElement
- Namespace
- CSharpToJavaScript.APIs.JS
- Assembly
- CSharpToJavaScript.dll
The SVGEllipseElement interface provides access to the properties of ellipse elements.
[Value("SVGEllipseElement")]
public class SVGEllipseElement : SVGGeometryElement, ElementCSSInlineStyle, GlobalEventHandlers, SVGElementInstance, HTMLOrSVGElement, SVGTests
- Inheritance
-
SVGEllipseElement
- Implements
- Inherited Members
Remarks
-ellipse SVG Element
Constructors
SVGEllipseElement()
public SVGEllipseElement()
Properties
Cx
The cx read-only property of the SVGEllipseElement interface describes the x-axis coordinate of the center of the ellipse as an SVGAnimatedLength. It reflects the computed value of the {{SVGAttr("cx")}} attribute on the {{SVGElement("ellipse")}} element.
[Value("cx")]
public SVGAnimatedLength Cx { get; }
Property Value
Remarks
The attribute value is a <length>, <percentage>, or <number>. The numeric value of the BaseVal is the x-coordinate of the ellipse's center in the user coordinate system.
Cy
The cy read-only property of the SVGEllipseElement interface describes the y-axis coordinate of the center of the ellipse as an SVGAnimatedLength. It reflects the computed value of the {{SVGAttr("cy")}} attribute on the {{SVGElement("ellipse")}} element.
[Value("cy")]
public SVGAnimatedLength Cy { get; }
Property Value
Remarks
The attribute value is a <length>, <percentage>, or <number>. The numeric value of the BaseVal is the y-coordinate of the ellipse's center in the user coordinate system.
Rx
The rx read-only property of the SVGEllipseElement interface describes the x-axis radius of the ellipse as an SVGAnimatedLength. It reflects the computed value of the {{SVGAttr("rx")}} attribute on the {{SVGElement("ellipse")}} element.
[Value("rx")]
public SVGAnimatedLength Rx { get; }
Property Value
Remarks
The attribute value is a <length>, <percentage>, or <number>. The numeric value of the BaseVal is the radius of the ellipse along the x-axis in the user coordinate system.
Ry
The ry read-only property of the SVGEllipseElement interface describes the y-axis radius of the ellipse as an SVGAnimatedLength. It reflects the computed value of the {{SVGAttr("ry")}} attribute on the {{SVGElement("ellipse")}} element.
[Value("ry")]
public SVGAnimatedLength Ry { get; }
Property Value
Remarks
The attribute value is a <length>, <percentage>, or <number>. The numeric value of the BaseVal is the radius of the ellipse along the y-axis in the user coordinate system.