Commit 25823a71 authored by Alexander.Trofimov's avatar Alexander.Trofimov

delete unused functions

asc_getIsFormatTable
asc_getIsAutoFilter
asc_getTableStyleName
asc_getClearFilter
parent 46560c39
......@@ -247,80 +247,87 @@
}
};
/** @constructor */
function asc_CCellInfo() {
this.name = null;
this.formula = "";
this.text = "";
this.halign = "left";
this.valign = "top";
this.flags = null;
this.font = null;
this.fill = null;
this.border = null;
this.innertext = null;
this.numFormat = null;
this.hyperlink = null;
this.comments = [];
this.isLocked = false;
this.styleName = null;
this.numFormatType = null;
this.angle = null;
this.autoFilterInfo = null;
this.formatTableInfo = null;
}
asc_CCellInfo.prototype = {
asc_getName: function() {
return this.name;
}, asc_getFormula: function() {
return this.formula;
}, asc_getText: function() {
return this.text;
}, asc_getHorAlign: function() {
return this.halign;
}, asc_getVertAlign: function() {
return this.valign;
}, asc_getFlags: function() {
return this.flags;
}, asc_getFont: function() {
return this.font;
}, asc_getFill: function() {
return this.fill;
}, asc_getBorders: function() {
return this.border;
}, asc_getInnerText: function() {
return this.innertext;
}, asc_getNumFormat: function() {
return this.numFormat;
}, asc_getHyperlink: function() {
return this.hyperlink;
}, asc_getComments: function() {
return this.comments;
}, asc_getLocked: function() {
return this.isLocked;
}, asc_getStyleName: function() {
return this.styleName;
}, asc_getNumFormatType: function() {
return this.numFormatType;
}, asc_getAngle: function() {
return this.angle;
}, asc_getAutoFilterInfo: function() {
return this.autoFilterInfo;
}, asc_getFormatTableInfo: function() {
return this.formatTableInfo;
}, asc_getIsFormatTable: function() {
return null
},//TODO DELETE
asc_getIsAutoFilter: function() {
return null
},//TODO DELETE
asc_getTableStyleName: function() {
return null
},//TODO DELETE
asc_getClearFilter: function() {
return null
}//TODO DELETE
};
/** @constructor */
function asc_CCellInfo() {
this.name = null;
this.formula = "";
this.text = "";
this.halign = "left";
this.valign = "top";
this.flags = null;
this.font = null;
this.fill = null;
this.border = null;
this.innertext = null;
this.numFormat = null;
this.hyperlink = null;
this.comments = [];
this.isLocked = false;
this.styleName = null;
this.numFormatType = null;
this.angle = null;
this.autoFilterInfo = null;
this.formatTableInfo = null;
this.sparklineInfo = null;
}
asc_CCellInfo.prototype.asc_getName = function () {
return this.name;
};
asc_CCellInfo.prototype.asc_getFormula = function () {
return this.formula;
};
asc_CCellInfo.prototype.asc_getText = function () {
return this.text;
};
asc_CCellInfo.prototype.asc_getHorAlign = function () {
return this.halign;
};
asc_CCellInfo.prototype.asc_getVertAlign = function () {
return this.valign;
};
asc_CCellInfo.prototype.asc_getFlags = function () {
return this.flags;
};
asc_CCellInfo.prototype.asc_getFont = function () {
return this.font;
};
asc_CCellInfo.prototype.asc_getFill = function () {
return this.fill;
};
asc_CCellInfo.prototype.asc_getBorders = function () {
return this.border;
};
asc_CCellInfo.prototype.asc_getInnerText = function () {
return this.innertext;
};
asc_CCellInfo.prototype.asc_getNumFormat = function () {
return this.numFormat;
};
asc_CCellInfo.prototype.asc_getHyperlink = function () {
return this.hyperlink;
};
asc_CCellInfo.prototype.asc_getComments = function () {
return this.comments;
};
asc_CCellInfo.prototype.asc_getLocked = function () {
return this.isLocked;
};
asc_CCellInfo.prototype.asc_getStyleName = function () {
return this.styleName;
};
asc_CCellInfo.prototype.asc_getNumFormatType = function () {
return this.numFormatType;
};
asc_CCellInfo.prototype.asc_getAngle = function () {
return this.angle;
};
asc_CCellInfo.prototype.asc_getAutoFilterInfo = function () {
return this.autoFilterInfo;
};
asc_CCellInfo.prototype.asc_getFormatTableInfo = function () {
return this.formatTableInfo;
};
/** @constructor */
function asc_CDefName(n, r, s, t, h, l) {
......@@ -450,10 +457,6 @@
prot["asc_getAngle"] = prot.asc_getAngle;
prot["asc_getAutoFilterInfo"] = prot.asc_getAutoFilterInfo;
prot["asc_getFormatTableInfo"] = prot.asc_getFormatTableInfo;
prot["asc_getIsFormatTable"] = prot.asc_getIsFormatTable;//TODO DELETE
prot["asc_getIsAutoFilter"] = prot.asc_getIsAutoFilter;//TODO DELETE
prot["asc_getTableStyleName"] = prot.asc_getTableStyleName;//TODO DELETE
prot["asc_getClearFilter"] = prot.asc_getClearFilter;//TODO DELETE
window["Asc"].asc_CDefName = window["Asc"]["asc_CDefName"] = asc_CDefName;
prot = asc_CDefName.prototype;
......
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