'Declaration Public ReadOnly Property Suggestions As SuggestionList
public SuggestionList Suggestions {get;}
'Declaration Public ReadOnly Property Suggestions As SuggestionList
public SuggestionList Suggestions {get;}
private void c1SpellChecker1_ShowSuggestions(object sender, C1.Win.C1SpellChecker.SuggestionsEventArgs e) { if (e.Word.StartsWith("o")) e.Suggestions.Insert(0, "one new suggestion"); if (e.Word.Contains("i")) e.Suggestions.Insert(0, "is suggestion"); if (e.Word.StartsWith("tex")) e.Suggestions.Insert(0, "text suggestion"); }