SpeechVoiceSpeakFlags class enum

The SpeechVoiceSpeakFlags enumeration lists flags that control the SpVoice.Speak method.

Constructors

SpeechVoiceSpeakFlags()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

SVSFDefault → const int
Specifies that the default settings should be used. The defaults are:
SVSFIsFilename → const int
The string passed to the Speak method is a file name rather than text. As a result, the string itself is not spoken but rather the file the path that points to is spoken.
SVSFIsNotXML → const int
The input text will not be parsed for XML markup.
SVSFIsXML → const int
The input text will be parsed for XML markup.
SVSFlagsAsync → const int
Specifies that the Speak call should be asynchronous. That is, it will return immediately after the speak request is queued.
SVSFNLPMask → const int
Flags handled by SAPI (as opposed to the text-to-speech engine) are set in this mask.
SVSFNLPSpeakPunc → const int
Punctuation characters should be expanded into words (e.g. "This is it." would become "This is it period").
SVSFParseAutoDetect → const int
The TTS XML format is auto-detected. This is the default if none of these TTS XML format values are present in the bit-field.
SVSFParseMask → const int
SVSFParseSapi|SVSFParseSsml
SVSFParseSapi → const int
Force XML parsing as MS SAPI.
SVSFParseSsml → const int
Force XML parsing as W3C SSML.
SVSFPersistXML → const int
Global state changes in the XML markup will persist across speak calls.
SVSFPurgeBeforeSpeak → const int
Purges all pending speak requests prior to this speak call.
SVSFUnusedFlags → const int
This mask has every unused bit set.
SVSFVoiceMask → const int
This is an existing SAPI 5.1 mask that has every flag bit set. In 5.3, it has been extended to contain SVSFParseMask.