# C1.WPF.SpellChecker.ISpellCheckableEditor.HasMoreText

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="C1_WPF_SpellChecker_ISpellCheckableEditor_HasMoreText_" data-uid="C1.WPF.SpellChecker.ISpellCheckableEditor.HasMoreText*">HasMoreText Method
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="C1_WPF_SpellChecker_ISpellCheckableEditor_HasMoreText_" data-uid="C1.WPF.SpellChecker.ISpellCheckableEditor.HasMoreText*"></a>
<h4 id="C1_WPF_SpellChecker_ISpellCheckableEditor_HasMoreText" data-uid="C1.WPF.SpellChecker.ISpellCheckableEditor.HasMoreText">HasMoreText()</h4>
<div class="markdown level1 summary"><p>Gets the next batch of text to spell check using the same modal dialog.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">bool HasMoreText()</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Function HasMoreText() As Boolean</code></pre>
</div>
<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="https://learn.microsoft.com/dotnet/api/system.boolean">bool</a></td>
      <td><p>True if there is more text to check, false otherwise.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="C1_WPF_SpellChecker_ISpellCheckableEditor_HasMoreText_remarks">Remarks</h5>
<div class="markdown level1 remarks"><pre><code>&lt;p&gt;This method allows spell-checking complex controls such as lists and
</code></pre>
<p>grids. In these cases, a typical implementation will use this method to
increment an internal index, update its <a class="xref" href="C1.WPF.SpellChecker.ISpellCheckableEditor.Text.html#C1_WPF_SpellChecker_ISpellCheckableEditor_Text">Text</a> property, and
return true to continue spell-checking without closing the dialog.</p>
<p>Implementations for simple controls such as text boxes should simply
return false.</p>
</div>
</div>
