SystemOptionsServicesRemoveDictionary Method Ingeniux CMS Web Services API

Removes a Spell check dictionary dictionary for a specific locale

Namespace: IngeniuxCMService
Assembly: IngeniuxCMService (in IngeniuxCMService.dll) Version: 9.0.565.0 (9.0.565)
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

Reference