[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITableColumn.Delete

Delete Method

Delete()

Deletes this table column from its parent table.

Declaration
void Delete()
Sub Delete()
Examples
worksheet.Range["A1:B3"].Value = new object[,] {{"Product", "Amount"}, {"Apple", 100}, {"Pear", 200}};
ITable table = worksheet.Tables.Add(worksheet.Range["A1:B3"], true);
table.Columns[1].Delete();