Commit 61b50516 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Добавил asc_getNumFormatType в asc_CCellInfo (Возвращается FormatType)

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@48433 954022d7-b5bf-4e40-9824-e11837661b57
parent 7dac2a3f
......@@ -152,6 +152,7 @@
this.isLocked = false;
this.isFormatTable = false;
this.styleName = null;
this.numFormatType = null;
}
asc_CCellInfo.prototype = {
......@@ -169,7 +170,8 @@
asc_getHyperlink: function(){ return this.hyperlink; },
asc_getLocked: function(){ return this.isLocked; },
asc_getIsFormatTable: function () { return this.isFormatTable; },
asc_getStyleName: function () { return this.styleName; }
asc_getStyleName: function () { return this.styleName; },
asc_getNumFormatType: function(){ return this.numFormatType; }
};
window["Asc"].asc_CCellInfo = asc_CCellInfo;
......@@ -191,6 +193,7 @@
prot["asc_getLocked"] = prot.asc_getLocked;
prot["asc_getIsFormatTable"] = prot.asc_getIsFormatTable;
prot["asc_getStyleName"] = prot.asc_getStyleName;
prot["asc_getNumFormatType"] = prot.asc_getNumFormatType;
// Класс точки
function asc_CCellRect (x, y, width, height) {
......
......@@ -5721,6 +5721,8 @@
cell_info.border.diagDown = new asc_CBorder(b.dd.w, b.dd.s, b.dd.c);
cell_info.border.diagUp = new asc_CBorder(b.du.w, b.du.s, b.du.c);
cell_info.numFormatType = c.getNumFormatType();
// Получаем гиперссылку
var ar = this.activeRange.clone();
var range = this.model.getRange3(ar.r1, ar.c1, ar.r2, ar.c2);
......
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