# FarPoint.Win.Spread.Model.ITableRangeManager.Find

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="FarPoint_Win_Spread_Model_ITableRangeManager_Find_" data-uid="FarPoint.Win.Spread.Model.ITableRangeManager.Find*">Find Method
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="FarPoint_Win_Spread_Model_ITableRangeManager_Find_" data-uid="FarPoint.Win.Spread.Model.ITableRangeManager.Find*"></a>
<h4 id="FarPoint_Win_Spread_Model_ITableRangeManager_Find_System_String_" data-uid="FarPoint.Win.Spread.Model.ITableRangeManager.Find(System.String)">Find(string)</h4>
<div class="markdown level1 summary"><p>Finds an ITableRange by its name.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">ITableRange Find(string tableName)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Function Find(tableName As String) As ITableRange</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">tableName</span></td>
      <td><p>Table's name</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="FarPoint.Win.Spread.Model.ITableRange.html">ITableRange</a></td>
      <td><p>An ITableRange object. Null if not found</p>
</td>
    </tr>
  </tbody>
</table>


<a id="FarPoint_Win_Spread_Model_ITableRangeManager_Find_" data-uid="FarPoint.Win.Spread.Model.ITableRangeManager.Find*"></a>
<h4 id="FarPoint_Win_Spread_Model_ITableRangeManager_Find_System_Int32_System_Int32_" data-uid="FarPoint.Win.Spread.Model.ITableRangeManager.Find(System.Int32,System.Int32)">Find(int, int)</h4>
<div class="markdown level1 summary"><p>Finds an ITableRange from specified row and column.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">ITableRange Find(int row, int column)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Function Find(row As Integer, column As Integer) As ITableRange</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.int32">int</a></td>
      <td><span class="parametername">row</span></td>
      <td><p>Row index</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
      <td><span class="parametername">column</span></td>
      <td><p>Column Index</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="FarPoint.Win.Spread.Model.ITableRange.html">ITableRange</a></td>
      <td><p>An ITableRange object. Null if not found</p>
</td>
    </tr>
  </tbody>
</table>


<a id="FarPoint_Win_Spread_Model_ITableRangeManager_Find_" data-uid="FarPoint.Win.Spread.Model.ITableRangeManager.Find*"></a>
<h4 id="FarPoint_Win_Spread_Model_ITableRangeManager_Find_System_Int32_System_Int32_System_Int32_System_Int32_" data-uid="FarPoint.Win.Spread.Model.ITableRangeManager.Find(System.Int32,System.Int32,System.Int32,System.Int32)">Find(int, int, int, int)</h4>
<div class="markdown level1 summary"><p>Gets a list of ITableRange objects from a specific cell range.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">List&lt;ITableRange&gt; Find(int row, int col, int rowCount, int colCount)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Function Find(row As Integer, col As Integer, rowCount As Integer, colCount As Integer) As List(Of ITableRange)</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.int32">int</a></td>
      <td><span class="parametername">row</span></td>
      <td><p>Row index</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
      <td><span class="parametername">col</span></td>
      <td><p>Column index</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
      <td><span class="parametername">rowCount</span></td>
      <td><p>Row count</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.int32">int</a></td>
      <td><span class="parametername">colCount</span></td>
      <td><p>Column count</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="https://learn.microsoft.com/dotnet/api/system.collections.generic.list-1">List</a>&lt;<a class="xref" href="FarPoint.Win.Spread.Model.ITableRange.html">ITableRange</a>&gt;</td>
      <td><p>A list of ITableRange object. Null if not found</p>
</td>
    </tr>
  </tbody>
</table>
</div>
