[]
Gets or sets the display name of this ITable.
The display name is the user-facing name of the table.
string DisplayName { get; set; }
Property DisplayName 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);
table.DisplayName = "SalesTable";
string displayName = table.DisplayName;