*/
private void shiftHyperlinks(int tRow, int bRow, int nRow, int lCol, int rCol, int nCol) {
final int maxcol = SpreadsheetVersion.EXCEL97.getLastColumnIndex();
final int maxrow = SpreadsheetVersion.EXCEL97.getLastRowIndex();
for (Iterator<RecordBase> it = _helper.getInternalSheet().getRecords().iterator(); it.hasNext(); ) {
RecordBase rec = it.next();
if (rec instanceof HyperlinkRecord){
final HyperlinkRecord link = (HyperlinkRecord)rec;
final int col = link.getFirstColumn();
final int row = link.getFirstRow();
if (inRange(row, tRow, bRow) && inRange(col, lCol, rCol)) {