classafFancomSapi::ISpeechDataKey

sys::Obj
  afFancomSapi::ISpeechDataKey

Provides read and write access to the speech configuration database.

http://msdn.microsoft.com/en-us/library/ee125263%28v=vs.85%29.aspx

@clsid {CE17C09B-4EFA-44D5-A4C9-59D9585AB0CD}

createKey

Source

ISpeechDataKey? createKey(Str? subKeyName)

Creates the specified subkey within the data key.

deleteKey

Source

Void deleteKey(Str? subKeyName)

Deletes the specified subkey from the data key.

deleteValue

Source

Void deleteValue(Str? valueName)

Deletes the specified value from the data key.

enumKeys

Source

Str? enumKeys(Int? index)

Returns the name of one subkey of the data key, specified by its index.

enumValues

Source

Str? enumValues(Int? index)

Returns the name of one value of the data key, specified by its index.

getBinaryValue

Source

Variant getBinaryValue(Str? valueName)

Gets the specified binary value from the data key.

getLongValue

Source

Int? getLongValue(Str? valueName)

Gets the specified Long value from the data key.

getStringValue

Source

Str? getStringValue(Str? valueName)

Gets the specified String value from the data key.

makeFromDispatch

Source

new makeFromDispatch(Dispatch dispatch)

openKey

Source

ISpeechDataKey? openKey(Str? subKeyName)

Opens the specified subkey of the data key as another data key object.

setBinaryValue

Source

Void setBinaryValue(Str? valueName, Variant? value)

Sets the specified binary value in the data key.

setLongValue

Source

Void setLongValue(Str? valueName, Int? value)

Sets the specified Long value in the data key.

setStringValue

Source

Void setStringValue(Str? valueName, Str? value)

Sets the specified String value in the data key.