void checker_NotInDictionaryWordFound(object sender, NotInDictionaryWordFoundEventArgs e)
    {
        e.Result = SpellCheckOperation.Ignore;

        if (e.Suggestions.Count > 0)
        {
            List <String> str = new List <string>();
            foreach (SuggestionBase s in e.Suggestions)
            {
                str.Add(s.Suggestion);
            }

            strResult.AppendFormat("<b>{0}</b> - {1}<br/>", e.Word, String.Join(", ", str.ToArray()));
        }

        e.Handled = true;
    }
Beispiel #2
0
 void checker_NotInDictionaryWordFound(object sender, NotInDictionaryWordFoundEventArgs e)
 {
     e.Result  = SpellCheckOperation.ChangeAll;
     e.Handled = true;
 }