git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@47263 954022d7-b5bf-4e40-9824-e11837661b57

This commit is contained in:
Alexander.Trofimov
2013-06-14 09:12:33 +00:00
committed by Alexander.Trofimov
parent ca3e0b9078
commit 5373ad3b06

View File

@ -1074,6 +1074,8 @@
aCFs[i].SqRefRange._setPropertyNoEmpty(null, null, function (c) {
if (CellValueType.Number === c.getType() && false === c.isEmptyTextString()) {
tmp = parseInt(c.getValueWithoutFormat());
if (isNaN(tmp))
return;
arrayCells.push({cell: c, val: tmp});
min = Math.min(min, tmp);
max = Math.max(max, tmp);