Functions related to dictation and the recognizer state.
| Function | Description | Parameters | Returns |
|---|
| INVOX.SwitchDictation() | Starts or stops the dictation depending on its current state. | — | void |
INVOX.SwitchDictation();
| Function | Description | Parameters | Returns |
|---|
| INVOX.SetDictationRunning() | Starts the dictation (recognizer active). | — | void |
INVOX.SetDictationRunning();
| Function | Description | Parameters | Returns |
|---|
| INVOX.SetDictationPaused() | Pauses the dictation (recognizer stopped). | — | void |
INVOX.SetDictationPaused();
| Function | Description | Parameters | Returns |
|---|
| INVOX.SetLang(lang) | Sets the recognition language. | String | void |
INVOX.SetLang("es-ES");
| Function | Description | Parameters | Returns |
|---|
| INVOX.GetCurrentLang() | Returns the current recognition language. | — | String |
const lang = INVOX.GetCurrentLang();
| Function | Description | Parameters | Returns |
|---|
| INVOX.GetLangs() | Returns the list of available recognition languages. | — | Array<String> |
const langs = INVOX.GetLangs();
| Function | Description | Parameters | Returns |
|---|
| INVOX.GetMicrophoneName() | Returns the name of the current microphone. | — | String |
const micName = INVOX.GetMicrophoneName();