You are reading help file online using chmlib.com
|
Object: ISpeechPhraseInfo
The SaveToMemory method saves the phrase information from a recognition result to memory.
The phrase may be recalled at a later time. To retrieve the phrase information from memory use SpPhraseInfoBuilder.RestorePhraseFromMemory.
ISpeechPhraseInfo.SaveToMemory() As Variant
The SaveToMemory method returns a Variant containing a pointer to saved phrase.
The following example demonstrates storing and retrieving the phrase portion of a recognition result. An example of late binding for creating the PhraseBuilder object is also demonstrated.
The sample assumes a valid RecoResult.
'Save the phrase first
Dim thePhrase As Variant
thePhrase = RecoResult.PhraseInfo.SaveToMemory
'Retrieve the phrase
Dim PhraseBuilder As Object
Set PhraseBuilder = CreateObject("SAPI.SpPhraseInfoBuilder")
Dim PhraseInfo As ISpeechPhraseInfo
Set PhraseInfo = PhraseBuilder.RestorePhraseFromMemory(thePhrase)
You are reading help file online using chmlib.com
|