enum classafFancomSapi::SpeechStreamFileMode
sys::Obj sys::Enum afFancomSapi::SpeechStreamFileMode
@
Serializable { simple=true }
Lists the access modes of a file stream.
http://msdn.microsoft.com/en-us/library/ee125214%28v=vs.85%29.aspx
- SSFMCreate
const static SpeechStreamFileMode SSFMCreate := ...
Fandoc ERRORS: Line 1 - Invalid annotation [] [hidden] Opens an existing file as read-write. Else, it creates the file then opens it as read-write. Not supported for wav files. Value is 2 (0x2)
- SSFMCreateForWrite
const static SpeechStreamFileMode SSFMCreateForWrite := ...
Creates file even if file exists and so destroys or overwrites the existing file.
Value is 3 (0x3)
- SSFMOpenForRead
const static SpeechStreamFileMode SSFMOpenForRead := ...
Opens an existing file as read-only.
Value is 0 (0x0)
- SSFMOpenReadWrite
const static SpeechStreamFileMode SSFMOpenReadWrite := ...
Fandoc ERRORS: Line 1 - Invalid annotation [] [hidden] Opens an existing file as read-write. Not supported for wav files. Value is 1 (0x1)
- fromStr
static new fromStr(Str name, Bool checked := true)
Return the SpeechStreamFileMode instance for the specified name. If not a valid name and checked is false return null, otherwise throw ParseErr.
- vals
const static SpeechStreamFileMode[] vals := ...
List of SpeechStreamFileMode values indexed by ordinal