Table of Contents

Class SVGAnimatedLength

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The SVGAnimatedLength interface represents attributes of type <length> which can be animated.

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

Remarks

Constructors

SVGAnimatedLength()

public SVGAnimatedLength()

Properties

AnimVal

The animVal property of the SVGAnimatedLength interface contains the current value of an SVG enumeration. If there is no animation, it is the same value as the BaseVal.

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

Property Value

SVGLength

An SVGLength containing the current value of the enumeration.

Remarks

BaseVal

The baseVal property of the SVGAnimatedLength interface contains the initial value of an SVG enumeration.

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

Property Value

SVGLength

An SVGLength containing the initial value of the length.

Remarks