Table of Contents

Class SVGNumber

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The SVGNumber interface corresponds to the {{cssxref("<number>")}} basic data type.

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

Remarks

An SVGNumber object can be designated as read only, which means that attempts to modify the object will result in an exception being thrown.

See also on MDN

Constructors

SVGNumber()

public SVGNumber()

Properties

Value

The value read-only property of the SVGNumber interface represents the number.

[Value("value")]
public Number Value { get; set; }

Property Value

Number

A float.

Remarks