SpeechSynthesisEvent: charLength property
The read-only charLength
property of the SpeechSynthesisEvent
interface returns the number of characters left to be spoken after the character at the charIndex
position.
If the speech engine can't determine it, it returns 0.
Value
An integer.
Examples
js
utterThis.onpause = (event) => {
const char = event.utterance.text.charAt(event.charIndex);
const charLeft = event.charLength;
if (charLeft) {
console.log(
`Speech paused. There are still ${charLeft} characters to be spoken.`,
);
} else {
console.log(
"Speech paused. The underlying speech engine can't tell how many characters are left.",
);
}
};
Specifications
Specification |
---|
Web Speech API # dom-speechsynthesisevent-charlength |
Browser compatibility
Report problems with this compatibility data on GitHubdesktop | mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
charLength |
Legend
Tip: you can click/tap on a cell for more information.
- Full support
- Full support
- No support
- No support
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.