# C1.WPF.SpellChecker.ISpellParser.GetNextWord

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="C1_WPF_SpellChecker_ISpellParser_GetNextWord_" data-uid="C1.WPF.SpellChecker.ISpellParser.GetNextWord*">GetNextWord Method
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="C1_WPF_SpellChecker_ISpellParser_GetNextWord_" data-uid="C1.WPF.SpellChecker.ISpellParser.GetNextWord*"></a>
<h4 id="C1_WPF_SpellChecker_ISpellParser_GetNextWord_System_String_System_Int32_C1_WPF_SpellChecker_IgnoreOptions_System_String_" data-uid="C1.WPF.SpellChecker.ISpellParser.GetNextWord(System.String,System.Int32,C1.WPF.SpellChecker.IgnoreOptions,System.String)">GetNextWord(string, int, IgnoreOptions, string)</h4>
<div class="markdown level1 summary"><p>Method that retrieves the next word to spell-check in a string.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">CharRange GetNextWord(string text, int start, IgnoreOptions ignore, string previousWord)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Function GetNextWord(text As String, start As Integer, ignore As IgnoreOptions, previousWord As String) As CharRange</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Name</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
      <td><span class="parametername">text</span></td>
      <td><p>String that contains the text being spell-checked.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
      <td><span class="parametername">start</span></td>
      <td><p>Position being checked within the <code class="paramref">text</code> string.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="C1.WPF.SpellChecker.IgnoreOptions.html">IgnoreOptions</a></td>
      <td><span class="parametername">ignore</span></td>
      <td><p><a class="xref" href="C1.WPF.SpellChecker.IgnoreOptions.html">IgnoreOptions</a> that specifies types of words that should be ignored.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.string">string</a></td>
      <td><span class="parametername">previousWord</span></td>
      <td><p>Last word retrieved by the parser (used to detect duplicates).</p>
</td>
    </tr>
  </tbody>
</table>
<h5 class="returns">Returns</h5>
<table class="table table-bordered table-condensed">
  <thead>
    <tr>
      <th>Type</th>
      <th>Description</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><a class="xref" href="C1.WPF.SpellChecker.CharRange.html">CharRange</a></td>
      <td><p>A <a class="xref" href="C1.WPF.SpellChecker.CharRange.html">CharRange</a> object that represents the next word to be spell-checked, or
null if all the text has been spell-checked.</p>
</td>
    </tr>
  </tbody>
</table>
</div>
