Commit 941d3009 authored by Alexander.Trofimov's avatar Alexander.Trofimov

add constructor

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@55446 954022d7-b5bf-4e40-9824-e11837661b57
parent 343a3114
......@@ -11,6 +11,7 @@
if (!window["Asc"]) {window["Asc"] = {};}
var prot;
/** @constructor */
function asc_CCellFlag(m, s, w, t, l) {
this.merge = !!m;
this.shrinkToFit = !!s;
......@@ -36,6 +37,7 @@
prot["asc_getSelectionType"] = prot.asc_getSelectionType;
prot["asc_getLockText"] = prot.asc_getLockText;
/** @constructor */
function asc_CFont(name, size, color, b, i, u, s, sub, sup) {
this.name = name !== undefined ? name : "Arial";
this.size = size !== undefined ? size : 10;
......@@ -73,6 +75,7 @@
prot["asc_getSuperscript"] = prot.asc_getSuperscript;
prot["asc_getColor"] = prot.asc_getColor;
/** @constructor */
function asc_CFill(color) {
this.color = color !== undefined ? color : null;
}
......@@ -86,6 +89,7 @@
prot["asc_getColor"] = prot.asc_getColor;
/** @constructor */
function asc_CBorder(style, color) {
// ToDo заглушка для создания border-а
if (typeof style === "string") {
......@@ -112,6 +116,7 @@
prot["asc_getStyle"] = prot.asc_getStyle;
prot["asc_getColor"] = prot.asc_getColor;
/** @constructor */
function asc_CBorders() {
this.left = null;
this.top = null;
......@@ -140,6 +145,7 @@
prot["asc_getDiagDown"] = prot.asc_getDiagDown;
prot["asc_getDiagUp"] = prot.asc_getDiagUp;
/** @constructor */
function asc_CCellInfo() {
this.name = null;
this.formula = "";
......
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