# GrapeCity.Documents.Excel.ITableColumn.Name

## Content

<div class="doc-site-dotnet-api-container">



<h1 id="GrapeCity_Documents_Excel_ITableColumn_Name_" data-uid="GrapeCity.Documents.Excel.ITableColumn.Name*">Name Property
</h1>
<div class="markdown level0 summary"></div>
<div class="markdown level0 conceptual"></div>



<a id="GrapeCity_Documents_Excel_ITableColumn_Name_" data-uid="GrapeCity.Documents.Excel.ITableColumn.Name*"></a>
<h4 id="GrapeCity_Documents_Excel_ITableColumn_Name" data-uid="GrapeCity.Documents.Excel.ITableColumn.Name">Name</h4>
<div class="markdown level1 summary"><p>Gets the name of the table column.</p>
<p>
This name is also used as the display name of the table column and must be
unique within the table.
</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="declaration">Declaration</h5>
<div class="codewrapper">
  <pre><code class="lang-csharp hljs">string Name { get; set; }</code></pre>
</div>
<div class="codewrapper">
  <pre><code class="lang-vbnet hljs">Property Name As String</code></pre>
</div>
<h5 id="GrapeCity_Documents_Excel_ITableColumn_Name_examples">Examples</h5>
<pre><code class="lang-csharp">worksheet.Range["A1:B3"].Value = new object[,] {
    {"Product", "Amount"},
    {"Apple", 100},
    {"Pear", 200}
};
ITable table = worksheet.Tables.Add(worksheet.Range["A1:B3"], true);
string name = table.Columns[1].Name;</code></pre>

</div>
