Commit 98e30e5e authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Добавил в информации asc_getAngle

Баг http://bugzserver/show_bug.cgi?id=20648

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@50223 954022d7-b5bf-4e40-9824-e11837661b57
parent 1e46d4ae
...@@ -153,6 +153,7 @@ ...@@ -153,6 +153,7 @@
this.isFormatTable = false; this.isFormatTable = false;
this.styleName = null; this.styleName = null;
this.numFormatType = null; this.numFormatType = null;
this.angle = null;
} }
asc_CCellInfo.prototype = { asc_CCellInfo.prototype = {
...@@ -171,7 +172,8 @@ ...@@ -171,7 +172,8 @@
asc_getLocked: function(){ return this.isLocked; }, asc_getLocked: function(){ return this.isLocked; },
asc_getIsFormatTable: function () { return this.isFormatTable; }, asc_getIsFormatTable: function () { return this.isFormatTable; },
asc_getStyleName: function () { return this.styleName; }, asc_getStyleName: function () { return this.styleName; },
asc_getNumFormatType: function(){ return this.numFormatType; } asc_getNumFormatType: function(){ return this.numFormatType; },
asc_getAngle: function () { return this.angle; }
}; };
window["Asc"].asc_CCellInfo = asc_CCellInfo; window["Asc"].asc_CCellInfo = asc_CCellInfo;
...@@ -194,6 +196,7 @@ ...@@ -194,6 +196,7 @@
prot["asc_getIsFormatTable"] = prot.asc_getIsFormatTable; prot["asc_getIsFormatTable"] = prot.asc_getIsFormatTable;
prot["asc_getStyleName"] = prot.asc_getStyleName; prot["asc_getStyleName"] = prot.asc_getStyleName;
prot["asc_getNumFormatType"] = prot.asc_getNumFormatType; prot["asc_getNumFormatType"] = prot.asc_getNumFormatType;
prot["asc_getAngle"] = prot.asc_getAngle;
// Класс точки // Класс точки
function asc_CCellRect (x, y, width, height) { function asc_CCellRect (x, y, width, height) {
...@@ -202,7 +205,7 @@ ...@@ -202,7 +205,7 @@
this._y = y; this._y = y;
this._width = width; this._width = width;
this._height = height; this._height = height;
}; }
asc_CCellRect.prototype = { asc_CCellRect.prototype = {
asc_getX: function () { return this._x; }, asc_getX: function () { return this._x; },
......
...@@ -5693,6 +5693,7 @@ ...@@ -5693,6 +5693,7 @@
cell_info.isFormatTable = this.autoFilters.searchRangeInTableParts(activeCell, this); cell_info.isFormatTable = this.autoFilters.searchRangeInTableParts(activeCell, this);
cell_info.styleName = c.getStyleName(); cell_info.styleName = c.getStyleName();
cell_info.angle = c.getAngle();
cell_info.flags = new asc_CCellFlag(); cell_info.flags = new asc_CCellFlag();
cell_info.flags.shrinkToFit = c.getShrinkToFit(); cell_info.flags.shrinkToFit = c.getShrinkToFit();
......
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