/**
  * Same as {@link #toString()}
  *
  * @return A1-style cell address string representation
  */
 public String formatAsString() {
   return CellReference.convertNumToColString(this._col) + (this._row + 1);
 }