integrationModeString
(default: "webSpeech")
Specifies which speech recognition engine or integration the component should use.
webSpeech
- Utilizes the browser's native Web Speech API.none
- Disables the built-in speech recognition. Use this when integrating with a custom or third-party speech recognition service.
Example
<button id="speechButton"></button>
<script>
$("#speechButton").kendoSpeechToTextButton({
integrationMode: "none"
});
</script>
In this article