What is the fastest way to 'clear' cell contents out of the grid?
You can call
ClearCells(CGXRange(1, 1, nRows, nCols), TRUE);
This will remove any attributes for the cells.
If you only want to make the values empty, you can call
ClearCells(range, FALSE);