[]
Gets or sets the name of the table.
Use this property to get or set the table name that identifies the table in the worksheet.
string Name { get; set; }
Property Name As String
worksheet.Range["A1:B3"].Value = new object[,] {
{"Product", "Amount"},
{"Apple", 100},
{"Orange", 200}
};
ITable table = worksheet.Tables.Add(worksheet.Range["A1:B3"], true);
string name = table.Name;