SVGTextContentElement: getStartPositionOfChar() メソッド
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
getStartPositionOfChar()
は SVGTextContentElement
インターフェイスのメソッドで、組版された文字の、テキストのレイアウトが実行された後の位置を返します。
構文
js
getStartPositionOfChar(index)
引数
index
-
integer
です。文字のインデックスです。
返値
DOMPoint
オブジェクトです。ユーザー座標での文字の位置です。
例外
IndexSizeError
DOMException
-
index
の位置に文字がなかった場合に発生します。
例
文字の位置の取得
html
<svg width="300" height="100">
<text id="exampleText" x="10" y="50" font-size="16">Hello, SVG World!</text>
</svg>
js
const textElement = document.getElementById("exampleText");
// インデックス 0 (最初の文字)の位置を取得
const position = textElement.getStartPositionOfChar(0);
// 最初の文字の X 座標と Y 座標を取得
console.log(position.x, position.y); // 出力: 10 50
仕様書
Specification |
---|
Scalable Vector Graphics (SVG) 2 # __svg__SVGTextContentElement__getStartPositionOfChar |