Table of Contents

Class SVGAnimatedLengthList

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The SVGAnimatedLengthList interface is used for attributes of type SVGLengthList which can be animated.

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

Remarks

Constructors

SVGAnimatedLengthList()

public SVGAnimatedLengthList()

Properties

AnimVal

The animVal read-only property of the SVGAnimatedLengthList interface represents the animated value of an attribute that accepts a list of <length>, <percentage>, or <number> values.

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

Property Value

SVGLengthList

An SVGLengthList object representing the animated value of the attribute.

Remarks

Some SVG attributes, like the x, y, dx, and dy attributes of the <tspan> and <text> elements, accept a list of length, percentages, or numbers as a value. This property provides access to the current animated state of the attribute as a live SVGLengthList object.

-<length>
-<percentage>
-<number>
-SVGLengthList

See also on MDN

BaseVal

The baseVal read-only property of the SVGAnimatedLengthList interface represents the base (non-animated) value of an animatable attribute that accepts a list of <length>, <percentage>, or <number> values.

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

Property Value

SVGLengthList

An SVGLengthList object representing the base value of the attribute.

Remarks

Some SVG attributes, like the x, y, dx, and dy attributes of the <tspan> and <text> elements, accept a list of length, percentages, or numbers as a value. This property reflects the attribute value, in its non-animated state, as a live SVGLengthList object.

-<length>
-<percentage>
-<number>
-SVGLengthList

See also on MDN