You are reading help file online using chmlib.com
|
Object: SpVoice
The IsUISupported method determines whether the specified UI is supported.
The speech recognition (SR) and text-to-speech (TTS) engines are capable of displaying and running various user interfaces (UI). These displays assist with different aspects of the speech environment such as user training, microphone wizards, adding and removing words, or setting controls for the engine. Many of these UIs are available using Speech properties in Control Panel. In addition, the engines are capable of requesting that the user run specific UIs to improve recognition. For example, the SR could request more user training if recognition is consistently poor.
Engines are not required to support UI and not all engines will have the same UI. Consult the manufacturer's engine documentation for specific details. An application may call IsUISupported before attempting to invoke a particular UI to see if the engine supports it. Invoking unsupported UIs will cause a run-time error. If the UI is available, use DisplayUI to invoke the display.
SpVoice.IsUISupported(
TypeOfUI As String,
[ExtraData As Variant = Nothing]
) As Boolean
A Boolean variable indicating whether the specified UI is supported. It returns True if supported, or False if not supported.
See SPVoice.DisplayUI for additional information.
The following Visual Basic form code demonstrates the use of the DisplayUI and IsUISupported methods. The application runs the audio sound panel, the same sound panel that is available using Speech properties in Control Panel.
To run this code, create a single form without any items on it. Paste this code into the Declarations section of the form.
Option Explicit
Public WithEvents vox As SpeechLib.SpVoice
Private Sub Form_Load()
Set vox = New SpVoice
RunUI SpeechAudioVolume
End Sub
Private Function RunUI(theUI As String)
If vox.IsUISupported(theUI) = True Then
vox.DisplayUI Form1.hWnd, "My App's Sound Levels", theUI, vbNullString
Else
MsgBox theUI & " UI not supported"
End If
End Function
You are reading help file online using chmlib.com
|