Example
The following example clears a block of cells, deleting both the data and the format.
C++
// Clear block of cells from C4 to D8
m_Spread1->ClearRange(3, 4, 4, 8, FALSE);
Visual Basic
' Clear block of cells from C4 to D8
fpSpread1.ClearRange 3, 4, 4, 8, False