Table of Contents

Class SVGAnimatedAngle

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The SVGAnimatedAngle interface is used for attributes of basic type <angle> which can be animated.

[Value("SVGAnimatedAngle")]
public class SVGAnimatedAngle
Inheritance
SVGAnimatedAngle
Inherited Members

Remarks

Constructors

SVGAnimatedAngle()

public SVGAnimatedAngle()

Properties

AnimVal

The animVal read-only property of the SVGAnimatedAngle interface represents the current animated value of the associated <angle> on an SVG element. If the attribute is not currently being animated, animVal will be the same as the baseVal.

[Value("animVal")]
public SVGAngle AnimVal { get; }

Property Value

SVGAngle

An SVGAngle object representing the animated value of the <angle> content type.

Remarks

This property reflects the animated state of the angle of the animating {{SVGattr("orient")}} attribute of the SVG marker element, providing access to the value of the angle during animations.

-BaseVal
-SVGAngle and angle value constants

See also on MDN

BaseVal

The baseVal read-only property of the SVGAnimatedAngle interface represents the base (non-animated) value of the associated <angle> on an SVG element. This property is used to retrieve the static value of the <angle>, unaffected by any ongoing animations.

[Value("baseVal")]
public SVGAngle BaseVal { get; }

Property Value

SVGAngle

An SVGAngle object representing the base value of the <angle> content type.

Remarks

This property reflects the <angle> value of the {{SVGattr("orient")}} attribute of the SVG {{SVGElement("marker")}} element, which is the same as the OrientAngle property.

-AnimVal
-SVGAngle and angle value constants

See also on MDN