# C1.C1Preview.TableCellCollection

## Content

<div class="doc-site-dotnet-api-container">



  <h1 id="C1_C1Preview_TableCellCollection" data-uid="C1.C1Preview.TableCellCollection" class="text-break">TableCellCollection Class
</h1>
  <div class="markdown level0 summary"><p>Represents a collection of <a class="xref" href="C1.C1Preview.RenderTable.html">RenderTable</a> cells
(objects of the type <a class="xref" href="C1.C1Preview.TableCell.html">TableCell</a>).
A collection of this type is returned by the <a class="xref" href="C1.C1Preview.RenderTable.Cells.html#C1_C1Preview_RenderTable_Cells">Cells</a> property
of a table.</p>
</div>
  <div class="markdown level0 conceptual"></div>
  <div class="inheritance">
    <h5>Inheritance</h5>
    <div class="level0"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></div>
    <div class="level1"><a class="xref" href="C1.C1Preview.Util.FastList.html">FastList</a></div>
    <div class="level2"><span class="xref">TableCellCollection</span></div>
  </div>
  <div class="implements">
    <h5>Implements</h5>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.ilist">IList</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.icollection">ICollection</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.collections.ienumerable">IEnumerable</a></div>
  </div>
  <h6><strong>Namespace</strong>: <a class="xref" href="C1.C1Preview.html">C1.C1Preview</a></h6>
  <h6><strong>Assembly</strong>: C1.WPF.PrintDocument.4.6.2.dll</h6>
  <h5 id="C1_C1Preview_TableCellCollection_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">[C1ClassSerialization(true)]
public class TableCellCollection : FastList, IList, ICollection, IEnumerable</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">&lt;C1ClassSerialization(True)&gt;
Public Class TableCellCollection
    Inherits FastList
    Implements IList, ICollection, IEnumerable</code></pre>
  </div>
  <h3 id="properties">Properties
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_C1Preview_TableCellCollection_Item_System_Int32_System_Int32_" data-uid="C1.C1Preview.TableCellCollection.Item(System.Int32,System.Int32)">
          <a class="xref" href="C1.C1Preview.TableCellCollection.Item.html#C1_C1Preview_TableCellCollection_Item_System_Int32_System_Int32_">this[int, int]</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the <a class="xref" href="C1.C1Preview.TableCell.html">TableCell</a> at the intersection of the specified row and column.
This property always returns a non-<b>null</b><a class="xref" href="C1.C1Preview.TableCell.html">TableCell</a> object.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_TableCellCollection_Owner" data-uid="C1.C1Preview.TableCellCollection.Owner">
          <a class="xref" href="C1.C1Preview.TableCellCollection.Owner.html#C1_C1Preview_TableCellCollection_Owner">Owner</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the <a class="xref" href="C1.C1Preview.RenderTable.html">RenderTable</a> containing the current collection of cells.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="methods">Methods
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_C1Preview_TableCellCollection_AssignFrom_C1_C1Preview_TableCellCollection_" data-uid="C1.C1Preview.TableCellCollection.AssignFrom(C1.C1Preview.TableCellCollection)">
          <a class="xref" href="C1.C1Preview.TableCellCollection.AssignFrom.html#C1_C1Preview_TableCellCollection_AssignFrom_C1_C1Preview_TableCellCollection_">AssignFrom(TableCellCollection)</a>
        </td>
        <td class="markdown level1 summary"><p>Assigns (copies) properties from another <a class="xref" href="C1.C1Preview.TableCellCollection.html">TableCellCollection</a> to the current object.</p>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_TableCellCollection_FindCell_System_Int32_System_Int32_" data-uid="C1.C1Preview.TableCellCollection.FindCell(System.Int32,System.Int32)">
          <a class="xref" href="C1.C1Preview.TableCellCollection.FindCell.html#C1_C1Preview_TableCellCollection_FindCell_System_Int32_System_Int32_">FindCell(int, int)</a>
        </td>
        <td 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>
</td>
      </tr>
      <tr>
        <td id="C1_C1Preview_TableCellCollection_GetRightBottomBounds" data-uid="C1.C1Preview.TableCellCollection.GetRightBottomBounds">
          <a class="xref" href="C1.C1Preview.TableCellCollection.GetRightBottomBounds.html#C1_C1Preview_TableCellCollection_GetRightBottomBounds">GetRightBottomBounds()</a>
        </td>
        <td class="markdown level1 summary"><p>Gets the bounds of the initialized cells area.
The returned <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.size">Size</a> structure's <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.size.width">Width</a>
contains the column index of the rightmost initialized cell + 1,
while <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.drawing.size.height">Height</a>
contains the row index of the bottommost initialized cell + 1.</p>
</td>
      </tr>
    </tbody>
  </table>

</div>
