# GrapeCity.Documents.Word.Table.Split

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="GrapeCity_Documents_Word_Table_Split_" data-uid="GrapeCity.Documents.Word.Table.Split*">Split Method
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="GrapeCity_Documents_Word_Table_Split_" data-uid="GrapeCity.Documents.Word.Table.Split*"></a>
<h4 id="GrapeCity_Documents_Word_Table_Split_GrapeCity_Documents_Word_Row_GrapeCity_Documents_Word_InsertLocation_" data-uid="GrapeCity.Documents.Word.Table.Split(GrapeCity.Documents.Word.Row,GrapeCity.Documents.Word.InsertLocation)">Split(Row, InsertLocation)</h4>
<div class="markdown level1 summary"><p>Splits the table at a specified location.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">public Table Split(Row row, InsertLocation location)</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Public Function Split(row As Row, location As InsertLocation) As Table</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="GrapeCity.Documents.Word.Row.html">Row</a></td>
      <td><span class="parametername">row</span></td>
      <td><p>The row where to split the table.
This may be null, see <code class="paramref">location</code> for details.</p>
</td>
    </tr>
    <tr>
      <td><a class="xref" href="GrapeCity.Documents.Word.InsertLocation.html">InsertLocation</a></td>
      <td><span class="parametername">location</span></td>
      <td><p>The target location (relative to <code class="paramref">row</code>) where to split the table.</p>
<p>
If <code class="paramref">row</code> is not null, valid location values are
<a class="xref" href="GrapeCity.Documents.Word.InsertLocation.html#GrapeCity_Documents_Word_InsertLocation_Before">Before</a> and <a class="xref" href="GrapeCity.Documents.Word.InsertLocation.html#GrapeCity_Documents_Word_InsertLocation_After">After</a>.
</p>
If <code class="paramref">row</code> is null, valid location values are
<a class="xref" href="GrapeCity.Documents.Word.InsertLocation.html#GrapeCity_Documents_Word_InsertLocation_Start">Start</a> and <a class="xref" href="GrapeCity.Documents.Word.InsertLocation.html#GrapeCity_Documents_Word_InsertLocation_End">End</a>.
</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.Documents.Word.Table.html">Table</a></td>
      <td><p>The second part of the split table content.</p>
</td>
    </tr>
  </tbody>
</table>
</div>
