# GrapeCity.Spreadsheet.IRange.FindNext

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="GrapeCity_Spreadsheet_IRange_FindNext_" data-uid="GrapeCity.Spreadsheet.IRange.FindNext*">FindNext Method
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="GrapeCity_Spreadsheet_IRange_FindNext_" data-uid="GrapeCity.Spreadsheet.IRange.FindNext*"></a>
<h4 id="GrapeCity_Spreadsheet_IRange_FindNext_System_Object_" data-uid="GrapeCity.Spreadsheet.IRange.FindNext(System.Object)">FindNext(object)</h4>
<div class="markdown level1 summary"><p>Continues a search that was begun with the <a class="xref" href="GrapeCity.Spreadsheet.IRange.Find.html#GrapeCity_Spreadsheet_IRange_Find_System_Object_System_Object_GrapeCity_Spreadsheet_FindLookIn_GrapeCity_Spreadsheet_LookAt_GrapeCity_Spreadsheet_SearchOrder_GrapeCity_Spreadsheet_SearchDirection_System_Boolean_">Find(object, object, FindLookIn, LookAt, SearchOrder, SearchDirection, bool)</a> method.
Finds the next cell that matches those same conditions and returns a Range object that represents that cell.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">IRange FindNext(object after = null)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Function FindNext(Optional after As Object = Nothing) As IRange</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.object">object</a></td>
      <td><span class="parametername">after</span></td>
      <td><p>The cell after which you want to search. The search begins after this cell; the specified cell is not searched until the method wraps back around to this cell. If this argument is not specified, the search starts after the cell in the upper-left corner of the range.</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="GrapeCity.Spreadsheet.IRange.html">IRange</a></td>
      <td><p>An <a class="xref" href="GrapeCity.Spreadsheet.IRange.html">IRange</a> object that represents the first cell where that information is found.</p>
</td>
    </tr>
  </tbody>
</table>
</div>
