/** @param model the model to set */
 void setModel(GridSheetModel model) {
   assert model != null;
   this.model = model;
   if (this.width == -1) {
     this.width = model.getDefaultColumnWidth();
   }
 }