Table of Contents

Class SVGAnimatedEnumeration

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The SVGAnimatedEnumeration interface describes attribute values which are constants from a particular enumeration and which can be animated.

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

Remarks

Constructors

SVGAnimatedEnumeration()

public SVGAnimatedEnumeration()

Properties

AnimVal

The animVal property of the SVGAnimatedEnumeration 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 ushort AnimVal { get; }

Property Value

ushort

An integer containing the current value of the enumeration

Remarks

BaseVal

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

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

Property Value

ushort

An integer containing the initial value of the enumeration

Remarks