SystemOptionsServicesRemoveDictionary Method
|
Removes a Spell check dictionary dictionary for a specific locale
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax public XHRServiceResponseGeneric<DictionaryEntry> RemoveDictionary(
RemoveDictionaryInput data
)
Public Function RemoveDictionary (
data As RemoveDictionaryInput
) As XHRServiceResponseGeneric(Of DictionaryEntry)
public:
virtual XHRServiceResponseGeneric<DictionaryEntry^>^ RemoveDictionary(
RemoveDictionaryInput^ data
) sealed
abstract RemoveDictionary :
data : RemoveDictionaryInput -> XHRServiceResponseGeneric<DictionaryEntry>
override RemoveDictionary :
data : RemoveDictionaryInput -> XHRServiceResponseGeneric<DictionaryEntry>
Parameters
- data
- Type: RemoveDictionaryInput
Object containing the locale name for the dictionary to be removed
Examples
Sample JSON input
{
"data": {
"data": "fr-ca"
}
}
Return Value
Type:
XHRServiceResponseGenericDictionaryEntryObject containing the dictionary and affix files that were deleted for the given locale. The file paths are relative to "xml" folder
Examples
Sample JSON return
{
"code": 0,
"error": null,
"message": {
"afffixFile": "custom/SpellCheckDictionaries/fr_ca.aff",
"dictionaryFile": "custom/SpellCheckDictionaries/fr_ca.dic"
}
}
See Also