Commit f7f95ee6 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

add asc_CPane

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@53033 954022d7-b5bf-4e40-9824-e11837661b57
parent cf645baa
...@@ -805,6 +805,7 @@ ...@@ -805,6 +805,7 @@
this["r2"] = r2; this["r2"] = r2;
} }
/** @constructor */
function asc_CSheetViewSettings () { function asc_CSheetViewSettings () {
if (!(this instanceof asc_CSheetViewSettings)) { if (!(this instanceof asc_CSheetViewSettings)) {
return new asc_CSheetViewSettings(); return new asc_CSheetViewSettings();
...@@ -820,6 +821,9 @@ ...@@ -820,6 +821,9 @@
// Показывать обозначения строк и столбцов // Показывать обозначения строк и столбцов
this.showRowColHeaders = null; this.showRowColHeaders = null;
// Закрепление области
this.pane = null;
return this; return this;
} }
...@@ -863,6 +867,18 @@ ...@@ -863,6 +867,18 @@
} }
}; };
/** @constructor */
function asc_CPane () {
if (!(this instanceof asc_CPane)) {
return new asc_CPane();
}
this.state = null;
this.topLeftCell = null;
return this;
}
function RedoObjectParam () { function RedoObjectParam () {
if (!(this instanceof RedoObjectParam)) { if (!(this instanceof RedoObjectParam)) {
return new RedoObjectParam(); return new RedoObjectParam();
...@@ -1157,6 +1173,8 @@ ...@@ -1157,6 +1173,8 @@
prot["asc_setShowGridLines"] = prot.asc_setShowGridLines; prot["asc_setShowGridLines"] = prot.asc_setShowGridLines;
prot["asc_setShowRowColHeaders"] = prot.asc_setShowRowColHeaders; prot["asc_setShowRowColHeaders"] = prot.asc_setShowRowColHeaders;
window["Asc"]["asc_CPane"] = window["Asc"].asc_CPane = asc_CPane;
window["Asc"]["asc_CStyleImage"] = window["Asc"].asc_CStyleImage = asc_CStyleImage; window["Asc"]["asc_CStyleImage"] = window["Asc"].asc_CStyleImage = asc_CStyleImage;
prot = asc_CStyleImage.prototype; prot = asc_CStyleImage.prototype;
prot["asc_getName"] = prot.asc_getName; prot["asc_getName"] = prot.asc_getName;
......
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