enum classafFancomSapi::SpeechSpecialTransitionType
sys::Obj sys::Enum afFancomSapi::SpeechSpecialTransitionType
@
Serializable { simple=true }
Lists special transitions for the speech recognition engine.
http://msdn.microsoft.com/en-us/library/ee125213%28v=vs.85%29.aspx
- SSTTDictation
const static SpeechSpecialTransitionType SSTTDictation := ...
Indicates there should be a dictation transition. SGRSTTDictation is a special transition and may not be supported by all engines. This is used to embed dictation within a context-free grammar (CFG). Each transition means one word should be recognized.
Value is 2 (0x2)
- SSTTTextBuffer
const static SpeechSpecialTransitionType SSTTTextBuffer := ...
Indicates there should be a text buffer transition. SGRSTTTextBuffer is a special transition and may not be supported by all engines. This indicates that the engine is to recognize a sub-string of words from the text-buffer, if it has been set.
Value is 3 (0x3)
- SSTTWildcard
const static SpeechSpecialTransitionType SSTTWildcard := ...
Indicates there should be a wildcard transition. SGRSTTWildcard is a special transition and may not be supported by all engines. This indicates a transition that matches any word or words. The engine does not try to recognize the spoken words. The engine includes the string value WildcardInCFG as an attribute in its object token to inform the application that it is capable of supporting this.
Value is 1 (0x1)
- fromStr
static new fromStr(Str name, Bool checked := true)
Return the SpeechSpecialTransitionType instance for the specified name. If not a valid name and checked is false return null, otherwise throw ParseErr.
- fromVariant
static SpeechSpecialTransitionType fromVariant(Variant variant)
- toFancom
Variant toFancom()
- vals
const static SpeechSpecialTransitionType[] vals := ...
List of SpeechSpecialTransitionType values indexed by ordinal
- value
const Int value