[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITableColumn.Name

Name Property

Name

Gets the name of the table column.

This name is also used as the display name of the table column and must be unique within the table.

Declaration
string Name { get; set; }
Property Name As String
Examples
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;