[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITable.Name

Name Property

Name

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.

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