Table of Contents

Class SVGAnimatedInteger

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

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

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

Remarks

Constructors

SVGAnimatedInteger()

public SVGAnimatedInteger()

Properties

AnimVal

The animVal property of the SVGAnimatedInteger interface represents the animated value of an <integer>. If no animation is applied, animVal equals baseVal.

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

Property Value

long

A long; the animated value of the attribute.

Remarks

Some attributes, like the {{SVGAttr("numOctaves")}} attribute of the feTurbulence element or the {{SVGAttr("order")}} attribute of the feConvolveMatrix accept a long integer as a value. This property provides access to the current animated state of the attribute as a number.

-<integer>
-numOctaves
-order

See also on MDN

BaseVal

The baseVal property of the SVGAnimatedInteger interface represents the base (non-animated) value of an animatable <integer>.

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

Property Value

long

A long; the base (non-animated) value of the reflected attribute.

Remarks

Some attributes, like the {{SVGAttr("numOctaves")}} attribute of the feTurbulence element or the {{SVGAttr("order")}} attribute of the feConvolveMatrix accept a long integer as a value. This property provides access to the static non-animated state of the attribute as a number.

-<integer>
-numOctaves
-order

See also on MDN