Skip to main content
A newer version of this page is available. .

ASPxSpellCheckerCustomDictionary.AddWords(String[]) Method

Appends several words to a custom dictionary.

Namespace: DevExpress.Web.ASPxSpellChecker

Assembly: DevExpress.Web.ASPxSpellChecker.v18.2.dll

Declaration

public virtual void AddWords(
    string[] words
)

Parameters

Name Type Description
words String[]

A string array of words to add to a dictionary.

Remarks

The method calls the ASPxSpellCheckerCustomDictionary.AddWord method for each word in batch mode.

Note

To save a dictionary to a file for subsequent use, handle the ASPxSpellChecker.WordAdded event and write words from dictionary to a stream.

See Also