SVGTextContentElement: getEndPositionOfChar() メソッド
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.
getEndPositionOfChar()
は SVGTextContentElement
インターフェイスのメソッドで、テキストのレイアウトが行われた後に、組版された文字の末尾の位置を返します。
構文
js
getEndPositionOfChar(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.getEndPositionOfChar(0);
// 最初の文字の X 座標と Y 座標を取得
console.log(position.x, position.y); // 出力: 21.5 50
仕様書
Specification |
---|
Scalable Vector Graphics (SVG) 2 # __svg__SVGTextContentElement__getEndPositionOfChar |