Table of Contents

Class SVGUseElement

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll
[Value("SVGUseElement")]
public class SVGUseElement : SVGGraphicsElement, ElementCSSInlineStyle, GlobalEventHandlers, SVGElementInstance, HTMLOrSVGElement, SVGTests, SVGURIReference
Inheritance
SVGUseElement
Implements
Inherited Members

Remarks

Constructors

SVGUseElement()

public SVGUseElement()

Properties

AnimatedInstanceRoot

[Value("animatedInstanceRoot")]
public SVGElement? AnimatedInstanceRoot { get; }

Property Value

SVGElement

Height

The height read-only property of the SVGUseElement interface describes the height of the referenced element as an SVGAnimatedLength. It reflects the computed value of the {{SVGAttr("height")}} attribute on the {{SVGElement("use")}} element.

[Value("height")]
public SVGAnimatedLength Height { get; }

Property Value

SVGAnimatedLength

An SVGAnimatedLength.

Remarks

The attribute value is a <length>, <percentage>, or <number>. The numeric value of the BaseVal is the height of the referenced element in the user coordinate system.

-Width
-BaseVal

See also on MDN

InstanceRoot

[Value("instanceRoot")]
public SVGElement? InstanceRoot { get; }

Property Value

SVGElement

Width

The width read-only property of the SVGUseElement interface describes the width of the referenced element as an SVGAnimatedLength. It reflects the computed value of the {{SVGAttr("width")}} attribute on the {{SVGElement("use")}} element.

[Value("width")]
public SVGAnimatedLength Width { get; }

Property Value

SVGAnimatedLength

An SVGAnimatedLength.

Remarks

The attribute value is a <length>, <percentage>, or <number>. The numeric value of the BaseVal is the width of the referenced element in the user coordinate system.

-Height
-BaseVal

See also on MDN

X

The x read-only property of the SVGUseElement interface describes the x-axis coordinate of the start point of the referenced element as an SVGAnimatedLength. It reflects the computed value of the {{SVGAttr("x")}} attribute on the {{SVGElement("use")}} element.

[Value("x")]
public SVGAnimatedLength X { get; }

Property Value

SVGAnimatedLength

An SVGAnimatedLength.

Remarks

The attribute value is a <length>, <percentage>, or <number>. The numeric value of the BaseVal is the x-coordinate of the top-left corner of the referenced element in the user coordinate system.

-Y
-BaseVal

See also on MDN

Y

The y read-only property of the SVGUseElement interface describes the y-axis coordinate of the start point of the referenced element as an SVGAnimatedLength. It reflects the computed value of the {{SVGAttr("y")}} attribute on the {{SVGElement("use")}} element.

[Value("y")]
public SVGAnimatedLength Y { get; }

Property Value

SVGAnimatedLength

An SVGAnimatedLength.

Remarks

The attribute value is a <length>, <percentage>, or <number>. The numeric value of the BaseVal is the y-coordinate of the top-left corner of the referenced element in the user coordinate system.

-X
-BaseVal

See also on MDN