Commit 0f1b6452 authored by Igor.Zotov's avatar Igor.Zotov Committed by Alexander.Trofimov

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@50656 954022d7-b5bf-4e40-9824-e11837661b57
parent 93aba2a6
......@@ -6176,6 +6176,23 @@
}
}
}
},
_isEmptyRange: function(activeCells)
{
var ws = this.worksheet;
for(var n = activeCells.r1; n <= activeCells.r2; n++)
{
for(var k = activeCells.c1; k <= activeCells.c2; k++)
{
cell = ws.model._getCell(n,k);
if(cell.getValueWithoutFormat() != '')
{
return false;
}
}
}
return true;
}
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment