Commit 5ca6ec55 authored by Alexander.Trofimov's avatar Alexander.Trofimov

bug 33509

add method asc_getLockedSparkline
parent fc4784bb
...@@ -263,7 +263,8 @@ ...@@ -263,7 +263,8 @@
this.hyperlink = null; this.hyperlink = null;
this.comments = []; this.comments = [];
this.isLocked = false; this.isLocked = false;
this.isLockedTable = null; this.isLockedTable = false;
this.isLockedSparkline = false;
this.styleName = null; this.styleName = null;
this.numFormatType = null; this.numFormatType = null;
this.angle = null; this.angle = null;
...@@ -317,6 +318,9 @@ ...@@ -317,6 +318,9 @@
asc_CCellInfo.prototype.asc_getLockedTable = function () { asc_CCellInfo.prototype.asc_getLockedTable = function () {
return this.isLockedTable; return this.isLockedTable;
}; };
asc_CCellInfo.prototype.asc_getLockedSparkline = function () {
return this.isLockedSparkline;
};
asc_CCellInfo.prototype.asc_getStyleName = function () { asc_CCellInfo.prototype.asc_getStyleName = function () {
return this.styleName; return this.styleName;
}; };
...@@ -461,6 +465,7 @@ ...@@ -461,6 +465,7 @@
prot["asc_getComments"] = prot.asc_getComments; prot["asc_getComments"] = prot.asc_getComments;
prot["asc_getLocked"] = prot.asc_getLocked; prot["asc_getLocked"] = prot.asc_getLocked;
prot["asc_getLockedTable"] = prot.asc_getLockedTable; prot["asc_getLockedTable"] = prot.asc_getLockedTable;
prot["asc_getLockedSparkline"] = prot.asc_getLockedSparkline;
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; prot["asc_getAngle"] = prot.asc_getAngle;
......
This diff is collapsed.
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