Table of Contents

Class SVGAnimatedNumberList

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The SVGAnimatedNumberList interface represents a list of attributes of type <number> which can be animated.

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

Remarks

Constructors

SVGAnimatedNumberList()

public SVGAnimatedNumberList()

Properties

AnimVal

The animVal read-only property of the SVGAnimatedNumberList interface represents the current animated value of an animatable attribute that accepts a list of <number> values.

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

Property Value

SVGNumberList

An SVGNumberList object representing the animated value of the attribute. The list contains one or more numbers corresponding to the individual number values specified in the attribute.

Remarks

This property reflects the viewBox attribute of the <svg> element, the values attribute of the feColorMatrix element and the {{SVGAttr("points")}} attribute of the {{SVGElement("rect")}}, {{SVGElement("polygon")}}, or {{SVGElement("polyline")}} element as a readonly SVGNumberList, providing access to a dynamically updated list of points defined by the {{SVGAttr("points")}} attribute.

-SVGAnimatedNumber

See also on MDN

BaseVal

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

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

Property Value

SVGNumberList

An SVGNumberList object representing the base value of the attribute. The list contains one or more numbers corresponding to the individual number values specified in the attribute.

Remarks

This property reflects the viewBox attribute of the <svg> element, the values attribute of the feColorMatrix element and the {{SVGAttr("points")}} attribute of the {{SVGElement("rect")}}, {{SVGElement("polygon")}}, or {{SVGElement("polyline")}} element as a readonly SVGNumberList, providing access to a static list of points defined by the {{SVGAttr("points")}} attribute.

-SVGAnimatedNumber

See also on MDN