Pronounceable Enumeration

Microsoft Speech Platform SDK 11

Collapse imageExpand ImageCopy imageCopyHover image

Lists values that represent whether the SpeechRecognitionEngine can pronounce a word and whether the pronunciation is defined in a lexicon.

Namespace:  Microsoft.Speech.Recognition
Assembly:  Microsoft.Speech (in Microsoft.Speech.dll)

Syntax

Visual Basic (Declaration)
Public Enumeration Pronounceable
Visual Basic (Usage)
Dim instance As Pronounceable
C#
public enum Pronounceable

Members

Member nameDescription
UnknownWordUnpronounceableIndicates that a word does not exist in the lexicon and is not pronounceable.
UnknownWordPronounceableIndicates that a word does not exist in the lexicon but is pronounceable.
KnownWordPronounceableIndicates that a word exists in the lexicon and is pronounceable.

Remarks

The Grammar object's IsPronounceable(String) method returns a member of Pronounceable enumeration.

See Also