Table of Contents

Class SVGAnimatedTransformList

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The SVGAnimatedTransformList interface represents attributes which take a list of numbers and which can be animated.

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

Remarks

Constructors

SVGAnimatedTransformList()

public SVGAnimatedTransformList()

Properties

AnimVal

The animVal read-only property of the SVGAnimatedTransformList interface represents the animated value of the transform attribute of an SVG element.

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

Property Value

SVGTransformList

An SVGTransformList object that reflects the current animated value of the transform attribute.

Remarks

This property reflects the SVG element's {{SVGAttr("transform")}}, the {{SVGElement("linearGradient")}} or {{SVGElement("radialGradient")}} element's {{SVGAttr("gradientTransform")}} attribute, or the {{SVGElement("pattern")}} element's {{SVGAttr("patternTransform")}} attribute as a readonly SVGTransformList, providing access to the dynamically updated SVGTransform for each transform function during an animation. If no animation is active, this property will return the same value as baseVal.

-SVGTransformList
-SVGTransform

See also on MDN

BaseVal

The baseVal read-only property of the SVGAnimatedTransformList interface represents the non-animated value of the transform attribute of an SVG element.

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

Property Value

SVGTransformList

An SVGTransformList object that represents the current, non-animated value of the transform attribute.

Remarks

This property reflects the SVG element's {{SVGAttr("transform")}}, the {{SVGElement("linearGradient")}} or {{SVGElement("radialGradient")}} element's {{SVGAttr("gradientTransform")}} attribute, or the {{SVGElement("pattern")}} element's {{SVGAttr("patternTransform")}} attribute value as a readonly SVGTransformList, providing access to a static SVGTransform for each transform function set on the SVG element.

-SVGTransformList
-SVGTransform

See also on MDN