# C1.C1Preview.TableCellCollection.FindCell

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="C1_C1Preview_TableCellCollection_FindCell_" data-uid="C1.C1Preview.TableCellCollection.FindCell*">FindCell Method
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="C1_C1Preview_TableCellCollection_FindCell_" data-uid="C1.C1Preview.TableCellCollection.FindCell*"></a>
<h4 id="C1_C1Preview_TableCellCollection_FindCell_System_Int32_System_Int32_" data-uid="C1.C1Preview.TableCellCollection.FindCell(System.Int32,System.Int32)">FindCell(int, int)</h4>
<div class="markdown level1 summary"><p>Returns the <a class="xref" href="C1.C1Preview.TableCell.html">TableCell</a> object at the specified row and column in the containing <a class="xref" href="C1.C1Preview.RenderTable.html">RenderTable</a>,
or <b>null</b> if that object has not been initialized.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public TableCell FindCell(int row, int col)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Function FindCell(row As Integer, col As Integer) As TableCell</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>The 0-based row index of the cell.</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>The 0-based column index of the cell.</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.C1Preview.TableCell.html">TableCell</a></td>
      <td><p>The <a class="xref" href="C1.C1Preview.TableCell.html">TableCell</a> object at the specified row and column, or <b>null</b>.</p>
</td>
    </tr>
  </tbody>
</table>
<h5 id="C1_C1Preview_TableCellCollection_FindCell_System_Int32_System_Int32__remarks">Remarks</h5>
<div class="markdown level1 remarks"><p>The cells of a table are not initialized unless they are accessed via the indexer property
on the cells collection. Unlike the indexer, this method can be used to test whether
a <a class="xref" href="C1.C1Preview.TableCell.html">TableCell</a> object has been created for a cell, without initializing it.</p>
</div>
</div>
