Xbasic

USER_DICTIONARY_ADD Function

Syntax

C user_dictionary_add(C word_list_to_add )

Arguments

word_list_to_add

A CR-LF delimited list of words. Character

Description

Add a CR-LF delimted list of words to the User-defined spellchecker dictionary.

Discussion

The USER_DICTIONARY_ADD() function adds a CR-LF delimited list of words to the user dictionary for the Spellchecker.

Example

dim lst as C
lst = 
rock
pebble
stone
%str%
? user_dictionary_add(lst)

Limitations

Desktop applications only. The user_dict.txt file must exist before using this function. You can create it with A5_EDIT_USER_DICTIONARY().

See Also