You are reading help file online using chmlib.com
|
Interface: ISpeechPhraseInfo
The Properties property returns the root property for the result.
Set: | (This property is read-only) |
Get: | ISpeechPhraseProperties = ISpeechPhraseInfo.Properties |
If the recognition result does not have an associated property, the Property will have a value of Nothing.
The following code snippet assumes a valid recognition RecoResult, although it still checks for validity. The sample displays a message box for each Name and Value of available properties.
Dim rp As ISpeechPhraseInfo
Set rp = RecoResult.PhraseInfo
Dim i As Long
If Not rp.Properties Is Nothing Then
For i = 0 To rp.Properties.Count
MsgBox Result.PhraseInfo.Properties.Item(i).Name
MsgBox Result.PhraseInfo.Properties.Item(i).Value
Next i
End If
You are reading help file online using chmlib.com
|