[]
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.
string Name { get; set; }
Property Name As String
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;