A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://developer.cdn.mozilla.net/en-US/docs/Web/API/SVGTextContentElement/getRotationOfChar below:

SVGTextContentElement: getRotationOfChar() method - Web APIs

SVGTextContentElement: getRotationOfChar() method

Baseline Widely available

The getRotationOfChar() method of the SVGTextContentElement interface the represents the rotation of a typographic character.

Syntax Parameters
index

An integer; the index of the character.

Return value

A float; the rotation angle of the character in degrees.

Exceptions
IndexSizeError DOMException

Thrown if no character is found at index.

Examples Getting the Rotation of a Character
<svg width="200" height="100">
  <text id="exampleText" x="10" y="40" writing-mode="vertical-rl">
    Hello, SVG
  </text>
</svg>
const textElement = document.getElementById("exampleText");

// Get the rotation of the first character "H"
const rotation = textElement.getRotationOfChar(0);

console.log(extent); // Output: 90
Specifications Browser compatibility See also

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4