<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > SAPI (Speech API) > SAPI_VoicesGet |
Description
Returns a string containing the list of installed SAPI voices.
Syntax
s = SAPI_VoicesGet
Returns
String.
List of installed SAPI voices. Each voice is separated by $TAB.
Parameters
Name |
Type |
Optional |
Meaning |
Remarks
To retrieve the list of installed SAPI voices use something like:
Dim Voices() As String
Dim nVoices As Long
nVoices = PARSE(SAPI_VoicesGet, Voices, $Tab)
Restrictions
See also
Examples