Click or drag to resize

SystemOptionsServicesRemoveDictionary Method


Removes a Spell check dictionary dictionary for a specific locale

Namespace:  IngeniuxCMService
Assembly:  IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.3.169
Syntax
public XHRServiceResponseGeneric<DictionaryEntry> RemoveDictionary(
	RemoveDictionaryInput data
)

Parameters

data
Type: RemoveDictionaryInput

Object containing the locale name for the dictionary to be removed

Examples
Sample JSON input
JavaScript
{
    "data": {
        "data": "fr-ca"
    }
}

Return Value

Type: XHRServiceResponseGenericDictionaryEntry

Object 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
JavaScript
{
    "code": 0,
    "error": null,
    "message": {
        "afffixFile": "custom/SpellCheckDictionaries/fr_ca.aff",
        "dictionaryFile": "custom/SpellCheckDictionaries/fr_ca.dic"
    }
}
See Also