Skip to main content
Version: 20 R7 BETA

SPELL Get current dictionary

SPELL Get current dictionary : Integer

ParameterTypeDescription
Function resultIntegerID of dictionary used for spell check

This command is not thread-safe, it cannot be used in preemptive code.

Description

The SPELL Get current dictionary command returns the ID number of the dictionary being used.

Example

We want to display the language of the current dictionary:

  // List of loaded dictionaries
 SPELL GET DICTIONARY LIST($IDs_al;$Codes_at;$Names_at)
 $curLangCode:=SPELL Get current dictionary
 $countryName:=$Names_at{Find in array($IDs_al;$curLangCode)}
  // Display message
 ALERT("Current dictionary: "+$countryName) // Spanish

See also

SPELL SET CURRENT DICTIONARY