[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITable.ConvertToRange

ConvertToRange Method

ConvertToRange()

Converts this table to a regular range of cells.

After calling this method, the cells remain on the worksheet as normal range data instead of being managed as an ITable.

Declaration
void ConvertToRange()
Sub ConvertToRange()
Examples
worksheet.Range["A1:B3"].Value = new object[,] {
    {"Name", "Value"},
    {"Test", 100},
    {"Hello", 200}
};
ITable table = worksheet.Tables.Add(worksheet.Range["A1:B3"], true);
table.ConvertToRange();