# C1.Win.SpellChecker.SuggestionsEventArgs.Suggestions

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="C1_Win_SpellChecker_SuggestionsEventArgs_Suggestions_" data-uid="C1.Win.SpellChecker.SuggestionsEventArgs.Suggestions*">Suggestions Property
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="C1_Win_SpellChecker_SuggestionsEventArgs_Suggestions_" data-uid="C1.Win.SpellChecker.SuggestionsEventArgs.Suggestions*"></a>
<h4 id="C1_Win_SpellChecker_SuggestionsEventArgs_Suggestions" data-uid="C1.Win.SpellChecker.SuggestionsEventArgs.Suggestions">Suggestions</h4>
<div class="markdown level1 summary"><p>Gets the suggestion list.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public SuggestionList Suggestions { get; }</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public ReadOnly Property Suggestions As SuggestionList</code></pre>
</div>
<h5 id="C1_Win_SpellChecker_SuggestionsEventArgs_Suggestions_remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>The suggestion list can be customized. Elements can be added, removed or rearranged.</p>
</div>
<h5 id="C1_Win_SpellChecker_SuggestionsEventArgs_Suggestions_examples">Examples</h5>
<p>This example checks the misspelled word and inserts one or more suggestions at the top of the list if need.</p>
<pre><code class="lang-csharp">private void c1SpellChecker1_ShowSuggestions(object sender, C1.Win.SpellChecker.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");
}</code></pre>

</div>
