do {
adjustLeft = false;
adjustRight = false;
adjustTop = false;
for (int x = extentLX; x <= extentRX; x++) {
WSCell cell = dataGrid.getCell(startSelY + extentTY, startSelX + x);
if (x == extentLX) {
if (cell.getLeftwareColspan() > 1) {
adjustLeft = true;
}
}
if (x == extentRX) {
if (cell.getColspan() > 1) {
adjustRight = true;
}
}
if (cell.getUpwardRowspan() > 1) {
adjustTop = true;
}
}
if (adjustLeft) {
blurRightEdge();