ISpeechPhraseInfo SaveToMemory Method

Microsoft Speech SDK

Intelligent Interface Technologies Home Page Microsoft Speech SDK

Speech Automation 5.1

Object: ISpeechPhraseInfo

SaveToMemory Method


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

Parameters

None

Return Value

The SaveToMemory method returns a Variant containing a pointer to saved phrase.

Example

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)