Table of Contents

Class SVGTextPositioningElement

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The SVGTextPositioningElement interface is implemented by elements that support attributes that position individual text glyphs. It is inherited by SVGTextElement and SVGTSpanElement.

[Value("SVGTextPositioningElement")]
public class SVGTextPositioningElement : SVGTextContentElement, ElementCSSInlineStyle, GlobalEventHandlers, SVGElementInstance, HTMLOrSVGElement, SVGTests
Inheritance
SVGTextPositioningElement
Implements
Derived
Inherited Members

Remarks

Constructors

SVGTextPositioningElement()

public SVGTextPositioningElement()

Properties

Dx

The dx read-only property of the SVGTextPositioningElement interface describes the x-axis coordinate of the SVGTextElement or SVGTSpanElement as an SVGAnimatedLengthList. It reflects the {{SVGAttr("dx")}} attribute's horizontal displacement of the individual text glyphs in the user coordinate system.

[Value("dx")]
public SVGAnimatedLengthList Dx { get; }

Property Value

SVGAnimatedLengthList

An SVGAnimatedLengthList.

Remarks

The attribute value is a list of <length>, <percentage>, or <number>. The numeric values in the BaseVal reflect the horizontal displacements in the user coordinate system.

-Dy
-BaseVal

See also on MDN

Dy

The dy read-only property of the SVGTextPositioningElement interface describes the y-axis coordinate of the SVGTextElement or SVGTSpanElement as an SVGAnimatedLengthList. It reflects the {{SVGAttr("dy")}} attribute's vertical displacement of the individual text glyphs in the user coordinate system.

[Value("dy")]
public SVGAnimatedLengthList Dy { get; }

Property Value

SVGAnimatedLengthList

An SVGAnimatedLengthList.

Remarks

The attribute value is a list of <length>, <percentage>, or <number>. The numeric values in the BaseVal reflect the vertical displacements in the user coordinate system.

-Dx
-BaseVal

See also on MDN

Rotate

The rotate read-only property of the SVGTextPositioningElement interface reflects the rotation of individual text glyphs, as specified by the {{SVGAttr("rotate")}} attribute of the given element.

[Value("rotate")]
public SVGAnimatedNumberList Rotate { get; }

Property Value

SVGAnimatedNumberList

An SVGAnimatedNumberList object.

Remarks

X

The x read-only property of the SVGTextPositioningElement interface describes the x-axis coordinate of the SVGTextElement or SVGTSpanElement as an SVGAnimatedLengthList. It reflects the {{SVGAttr("x")}} attribute's horizontal position of the individual text glyphs in the user coordinate system.

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

Property Value

SVGAnimatedLengthList

An SVGAnimatedLengthList.

Remarks

The attribute value is a list of <length>, <percentage>, or <number>. The numeric values in the BaseVal reflect the x-coordinates in the user coordinate system.

-Y
-BaseVal

See also on MDN

Y

The y read-only property of the SVGTextPositioningElement interface describes the y-axis coordinate of the SVGTextElement or SVGTSpanElement as an SVGAnimatedLengthList. It reflects the {{SVGAttr("y")}} attribute's vertical position of the individual text glyphs in the user coordinate system.

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

Property Value

SVGAnimatedLengthList

An SVGAnimatedLengthList.

Remarks

The attribute value is a list of <length>, <percentage>, or <number>. The numeric values in the BaseVal reflect the y-coordinates in the user coordinate system.

-X
-BaseVal

See also on MDN