[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITable.DisplayName

DisplayName Property

DisplayName

Gets or sets the display name of this ITable.

The display name is the user-facing name of the table.

Declaration
string DisplayName { get; set; }
Property DisplayName 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);
table.DisplayName = "SalesTable";
string displayName = table.DisplayName;