Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sdkjs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
sdkjs
Commits
43375450
Commit
43375450
authored
Jul 11, 2016
by
Oleg Korshul
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'release/4.0.1' into develop
Conflicts: common/commonDefines.js
parents
27353cb1
15764928
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
842 additions
and
806 deletions
+842
-806
common/commonDefines.js
common/commonDefines.js
+5
-6
slide/apiDefines.js
slide/apiDefines.js
+143
-134
word/apiDefines.js
word/apiDefines.js
+694
-666
No files found.
common/commonDefines.js
View file @
43375450
...
...
@@ -669,12 +669,11 @@
TEXT_ALIGN_TOP
:
4
// Top
};
var
c_oAscVertDrawingText
=
{
normal
:
1
,
vert
:
3
,
vert270
:
4
};
var
c_oAscVertDrawingText
=
{
normal
:
1
,
vert
:
3
,
vert270
:
4
};
var
c_oAscLineJoinType
=
{
Round
:
1
,
Bevel
:
2
,
...
...
slide/apiDefines.js
View file @
43375450
...
...
@@ -32,181 +32,190 @@
"
use strict
"
;
/** @enum {number} */
var
c_oAscZoomType
=
{
Current
:
0
,
FitWidth
:
1
,
FitPage
:
2
Current
:
0
,
FitWidth
:
1
,
FitPage
:
2
};
/** @enum {number} */
var
c_oAscCollaborativeMarksShowType
=
{
All
:
0
,
LastChanges
:
1
All
:
0
,
LastChanges
:
1
};
/** @enum {number} */
var
c_oAscVertAlignJc
=
{
Top
:
0x00
,
// var vertalignjc_Top = 0x00;
Center
:
0x01
,
// var vertalignjc_Center = 0x01;
Bottom
:
0x02
// var vertalignjc_Bottom = 0x02
Top
:
0x00
,
// var vertalignjc_Top = 0x00;
Center
:
0x01
,
// var vertalignjc_Center = 0x01;
Bottom
:
0x02
// var vertalignjc_Bottom = 0x02
};
/
/ Right = 0; Left = 1; Center = 2; Justify = 3;
/
** @enum {number} */
var
c_oAscAlignType
=
{
LEFT
:
0
,
CENTER
:
1
,
RIGHT
:
2
,
JUSTIFY
:
3
,
TOP
:
4
,
MIDDLE
:
5
,
BOTTOM
:
6
LEFT
:
0
,
CENTER
:
1
,
RIGHT
:
2
,
JUSTIFY
:
3
,
TOP
:
4
,
MIDDLE
:
5
,
BOTTOM
:
6
};
/** @enum {number} */
var
c_oAscContextMenuTypes
=
{
Main
:
0
,
Thumbnails
:
1
Main
:
0
,
Thumbnails
:
1
};
var
THEME_THUMBNAIL_WIDTH
=
180
;
var
THEME_THUMBNAIL_HEIGHT
=
135
;
var
LAYOUT_THUMBNAIL_WIDTH
=
180
;
var
THEME_THUMBNAIL_WIDTH
=
180
;
var
THEME_THUMBNAIL_HEIGHT
=
135
;
var
LAYOUT_THUMBNAIL_WIDTH
=
180
;
var
LAYOUT_THUMBNAIL_HEIGHT
=
135
;
/** @enum {number} */
var
c_oAscTableSelectionType
=
{
Cell
:
0
,
Row
:
1
,
Column
:
2
,
Table
:
3
Cell
:
0
,
Row
:
1
,
Column
:
2
,
Table
:
3
};
/** @enum {number} */
var
c_oAscAlignShapeType
=
{
ALIGN_LEFT
:
0
,
ALIGN_RIGHT
:
1
,
ALIGN_TOP
:
2
,
ALIGN_BOTTOM
:
3
,
ALIGN_CENTER
:
4
,
ALIGN_MIDDLE
:
5
ALIGN_LEFT
:
0
,
ALIGN_RIGHT
:
1
,
ALIGN_TOP
:
2
,
ALIGN_BOTTOM
:
3
,
ALIGN_CENTER
:
4
,
ALIGN_MIDDLE
:
5
};
/** @enum {number} */
var
c_oAscTableLayout
=
{
AutoFit
:
0x00
,
Fixed
:
0x01
AutoFit
:
0x00
,
Fixed
:
0x01
};
/** @enum {number} */
var
c_oAscSlideTransitionTypes
=
{
None
:
0
,
Fade
:
1
,
Push
:
2
,
Wipe
:
3
,
Split
:
4
,
UnCover
:
5
,
Cover
:
6
,
Clock
:
7
,
Zoom
:
8
None
:
0
,
Fade
:
1
,
Push
:
2
,
Wipe
:
3
,
Split
:
4
,
UnCover
:
5
,
Cover
:
6
,
Clock
:
7
,
Zoom
:
8
};
/** @enum {number} */
var
c_oAscSlideTransitionParams
=
{
Fade_Smoothly
:
0
,
Fade_Through_Black
:
1
,
Param_Left
:
0
,
Param_Top
:
1
,
Param_Right
:
2
,
Param_Bottom
:
3
,
Param_TopLeft
:
4
,
Param_TopRight
:
5
,
Param_BottomLeft
:
6
,
Param_BottomRight
:
7
,
Split_VerticalIn
:
8
,
Split_VerticalOut
:
9
,
Split_HorizontalIn
:
10
,
Split_HorizontalOut
:
11
,
Clock_Clockwise
:
0
,
Clock_Counterclockwise
:
1
,
Clock_Wedge
:
2
,
Zoom_In
:
0
,
Zoom_Out
:
1
,
Zoom_AndRotate
:
2
Fade_Smoothly
:
0
,
Fade_Through_Black
:
1
,
Param_Left
:
0
,
Param_Top
:
1
,
Param_Right
:
2
,
Param_Bottom
:
3
,
Param_TopLeft
:
4
,
Param_TopRight
:
5
,
Param_BottomLeft
:
6
,
Param_BottomRight
:
7
,
Split_VerticalIn
:
8
,
Split_VerticalOut
:
9
,
Split_HorizontalIn
:
10
,
Split_HorizontalOut
:
11
,
Clock_Clockwise
:
0
,
Clock_Counterclockwise
:
1
,
Clock_Wedge
:
2
,
Zoom_In
:
0
,
Zoom_Out
:
1
,
Zoom_AndRotate
:
2
};
/** @enum {number} */
var
c_oAscLockTypeElemPresentation
=
{
Object
:
1
,
Slide
:
2
,
Presentation
:
3
Object
:
1
,
Slide
:
2
,
Presentation
:
3
};
var
c_oSerFormat
=
{
Version
:
1
,
Signature
:
"
PPTY
"
Version
:
1
,
Signature
:
"
PPTY
"
};
var
TABLE_STYLE_WIDTH_PIX
=
70
;
var
TABLE_STYLE_WIDTH_PIX
=
70
;
var
TABLE_STYLE_HEIGHT_PIX
=
50
;
//------------------------------------------------------------export---------------------------------------------------
var
prot
;
window
[
'
Asc
'
]
=
window
[
'
Asc
'
]
||
{};
window
[
'
Asc
'
][
'
c_oAscCollaborativeMarksShowType
'
]
=
c_oAscCollaborativeMarksShowType
;
prot
=
c_oAscCollaborativeMarksShowType
;
prot
[
'
All
'
]
=
prot
.
All
;
prot
[
'
LastChanges
'
]
=
prot
.
LastChanges
;
window
[
'
Asc
'
][
'
c_oAscVertAlignJc
'
]
=
c_oAscVertAlignJc
;
prot
=
c_oAscVertAlignJc
;
prot
[
'
Top
'
]
=
prot
.
Top
;
prot
[
'
Center
'
]
=
prot
.
Center
;
prot
[
'
Bottom
'
]
=
prot
.
Bottom
;
window
[
'
Asc
'
][
'
c_oAscContextMenuTypes
'
]
=
window
[
'
Asc
'
].
c_oAscContextMenuTypes
=
c_oAscContextMenuTypes
;
prot
=
c_oAscContextMenuTypes
;
prot
[
'
Main
'
]
=
prot
.
Main
;
prot
[
'
Thumbnails
'
]
=
prot
.
Thumbnails
;
window
[
'
Asc
'
][
'
c_oAscAlignShapeType
'
]
=
c_oAscAlignShapeType
;
prot
=
c_oAscAlignShapeType
;
prot
[
'
ALIGN_LEFT
'
]
=
prot
.
ALIGN_LEFT
;
prot
[
'
ALIGN_RIGHT
'
]
=
prot
.
ALIGN_RIGHT
;
prot
[
'
ALIGN_TOP
'
]
=
prot
.
ALIGN_TOP
;
prot
[
'
ALIGN_BOTTOM
'
]
=
prot
.
ALIGN_BOTTOM
;
prot
[
'
ALIGN_CENTER
'
]
=
prot
.
ALIGN_CENTER
;
prot
[
'
ALIGN_MIDDLE
'
]
=
prot
.
ALIGN_MIDDLE
;
window
[
'
Asc
'
][
'
c_oAscTableLayout
'
]
=
c_oAscTableLayout
;
prot
=
c_oAscTableLayout
;
prot
[
'
AutoFit
'
]
=
pro
t
.
AutoFit
;
prot
[
'
Fixed
'
]
=
pro
t
.
Fixed
;
window
[
'
Asc
'
][
'
c_oAscSlideTransitionTypes
'
]
=
c_oAscSlideTransitionTypes
;
prot
=
c_oAscSlideTransitionTypes
;
prot
[
'
None
'
]
=
prot
.
None
;
prot
[
'
Fade
'
]
=
prot
.
Fade
;
prot
[
'
Push
'
]
=
prot
.
Push
;
prot
[
'
Wipe
'
]
=
prot
.
Wipe
;
prot
[
'
Split
'
]
=
prot
.
Split
;
prot
[
'
UnCover
'
]
=
prot
.
UnCover
;
prot
[
'
Cover
'
]
=
prot
.
Cover
;
prot
[
'
Clock
'
]
=
prot
.
Clock
;
prot
[
'
Zoom
'
]
=
prot
.
Zoom
;
window
[
'
Asc
'
][
'
c_oAscSlideTransitionParams
'
]
=
c_oAscSlideTransitionParams
;
prot
=
c_oAscSlideTransitionParams
;
prot
[
'
Fade_Smoothly
'
]
=
prot
.
Fade_Smoothly
;
prot
[
'
Fade_Through_Black
'
]
=
prot
.
Fade_Through_Black
;
prot
[
'
Param_Left
'
]
=
prot
.
Param_Left
;
prot
[
'
Param_Top
'
]
=
prot
.
Param_Top
;
prot
[
'
Param_Right
'
]
=
prot
.
Param_Right
;
prot
[
'
Param_Bottom
'
]
=
prot
.
Param_Bottom
;
prot
[
'
Param_TopLeft
'
]
=
prot
.
Param_TopLeft
;
prot
[
'
Param_TopRight
'
]
=
prot
.
Param_TopRight
;
prot
[
'
Param_BottomLeft
'
]
=
prot
.
Param_BottomLeft
;
prot
[
'
Param_BottomRight
'
]
=
prot
.
Param_BottomRight
;
prot
[
'
Split_VerticalIn
'
]
=
prot
.
Split_VerticalIn
;
prot
[
'
Split_VerticalOut
'
]
=
prot
.
Split_VerticalOut
;
prot
[
'
Split_HorizontalIn
'
]
=
prot
.
Split_HorizontalIn
;
prot
[
'
Split_HorizontalOut
'
]
=
prot
.
Split_HorizontalOut
;
prot
[
'
Clock_Clockwise
'
]
=
prot
.
Clock_Clockwise
;
prot
[
'
Clock_Counterclockwise
'
]
=
prot
.
Clock_Counterclockwise
;
prot
[
'
Clock_Wedge
'
]
=
prot
.
Clock_Wedge
;
prot
[
'
Zoom_In
'
]
=
prot
.
Zoom_In
;
prot
[
'
Zoom_Out
'
]
=
prot
.
Zoom_Out
;
prot
[
'
Zoom_AndRotate
'
]
=
prot
.
Zoom_AndRotate
;
window
[
'
AscCommon
'
]
=
window
[
'
AscCommon
'
]
||
{};
window
[
'
AscCommon
'
].
c_oSerFormat
=
c_oSerFormat
;
prot
=
window
[
'
Asc
'
][
'
c_oAscCollaborativeMarksShowType
'
]
=
c_oAscCollaborativeMarksShowType
;
prot
[
'
All
'
]
=
c_oAscCollaborativeMarksShowType
.
All
;
prot
[
'
LastChanges
'
]
=
c_oAscCollaborativeMarksShowType
.
LastChanges
;
prot
=
window
[
'
Asc
'
][
'
c_oAscVertAlignJc
'
]
=
c_oAscVertAlignJc
;
prot
[
'
Top
'
]
=
c_oAscVertAlignJc
.
Top
;
prot
[
'
Center
'
]
=
c_oAscVertAlignJc
.
Center
;
prot
[
'
Bottom
'
]
=
c_oAscVertAlignJc
.
Bottom
;
prot
=
window
[
'
Asc
'
][
'
c_oAscContextMenuTypes
'
]
=
window
[
'
Asc
'
].
c_oAscContextMenuTypes
=
c_oAscContextMenuTypes
;
prot
[
'
Main
'
]
=
c_oAscContextMenuTypes
.
Main
;
prot
[
'
Thumbnails
'
]
=
c_oAscContextMenuTypes
.
Thumbnails
;
prot
=
window
[
'
Asc
'
][
'
c_oAscAlignShapeType
'
]
=
c_oAscAlignShapeType
;
prot
[
'
ALIGN_LEFT
'
]
=
c_oAscAlignShapeType
.
ALIGN_LEFT
;
prot
[
'
ALIGN_RIGHT
'
]
=
c_oAscAlignShapeType
.
ALIGN_RIGHT
;
prot
[
'
ALIGN_TOP
'
]
=
c_oAscAlignShapeType
.
ALIGN_TOP
;
prot
[
'
ALIGN_BOTTOM
'
]
=
c_oAscAlignShapeType
.
ALIGN_BOTTOM
;
prot
[
'
ALIGN_CENTER
'
]
=
c_oAscAlignShapeType
.
ALIGN_CENTER
;
prot
[
'
ALIGN_MIDDLE
'
]
=
c_oAscAlignShapeType
.
ALIGN_MIDDLE
;
prot
=
window
[
'
Asc
'
][
'
c_oAscTableLayout
'
]
=
c_oAscTableLayout
;
prot
[
'
AutoFit
'
]
=
c_oAscTableLayou
t
.
AutoFit
;
prot
[
'
Fixed
'
]
=
c_oAscTableLayou
t
.
Fixed
;
prot
=
window
[
'
Asc
'
][
'
c_oAscSlideTransitionTypes
'
]
=
c_oAscSlideTransitionTypes
;
prot
[
'
None
'
]
=
c_oAscSlideTransitionTypes
.
None
;
prot
[
'
Fade
'
]
=
c_oAscSlideTransitionTypes
.
Fade
;
prot
[
'
Push
'
]
=
c_oAscSlideTransitionTypes
.
Push
;
prot
[
'
Wipe
'
]
=
c_oAscSlideTransitionTypes
.
Wipe
;
prot
[
'
Split
'
]
=
c_oAscSlideTransitionTypes
.
Split
;
prot
[
'
UnCover
'
]
=
c_oAscSlideTransitionTypes
.
UnCover
;
prot
[
'
Cover
'
]
=
c_oAscSlideTransitionTypes
.
Cover
;
prot
[
'
Clock
'
]
=
c_oAscSlideTransitionTypes
.
Clock
;
prot
[
'
Zoom
'
]
=
c_oAscSlideTransitionTypes
.
Zoom
;
prot
=
window
[
'
Asc
'
][
'
c_oAscSlideTransitionParams
'
]
=
c_oAscSlideTransitionParams
;
prot
[
'
Fade_Smoothly
'
]
=
c_oAscSlideTransitionParams
.
Fade_Smoothly
;
prot
[
'
Fade_Through_Black
'
]
=
c_oAscSlideTransitionParams
.
Fade_Through_Black
;
prot
[
'
Param_Left
'
]
=
c_oAscSlideTransitionParams
.
Param_Left
;
prot
[
'
Param_Top
'
]
=
c_oAscSlideTransitionParams
.
Param_Top
;
prot
[
'
Param_Right
'
]
=
c_oAscSlideTransitionParams
.
Param_Right
;
prot
[
'
Param_Bottom
'
]
=
c_oAscSlideTransitionParams
.
Param_Bottom
;
prot
[
'
Param_TopLeft
'
]
=
c_oAscSlideTransitionParams
.
Param_TopLeft
;
prot
[
'
Param_TopRight
'
]
=
c_oAscSlideTransitionParams
.
Param_TopRight
;
prot
[
'
Param_BottomLeft
'
]
=
c_oAscSlideTransitionParams
.
Param_BottomLeft
;
prot
[
'
Param_BottomRight
'
]
=
c_oAscSlideTransitionParams
.
Param_BottomRight
;
prot
[
'
Split_VerticalIn
'
]
=
c_oAscSlideTransitionParams
.
Split_VerticalIn
;
prot
[
'
Split_VerticalOut
'
]
=
c_oAscSlideTransitionParams
.
Split_VerticalOut
;
prot
[
'
Split_HorizontalIn
'
]
=
c_oAscSlideTransitionParams
.
Split_HorizontalIn
;
prot
[
'
Split_HorizontalOut
'
]
=
c_oAscSlideTransitionParams
.
Split_HorizontalOut
;
prot
[
'
Clock_Clockwise
'
]
=
c_oAscSlideTransitionParams
.
Clock_Clockwise
;
prot
[
'
Clock_Counterclockwise
'
]
=
c_oAscSlideTransitionParams
.
Clock_Counterclockwise
;
prot
[
'
Clock_Wedge
'
]
=
c_oAscSlideTransitionParams
.
Clock_Wedge
;
prot
[
'
Zoom_In
'
]
=
c_oAscSlideTransitionParams
.
Zoom_In
;
prot
[
'
Zoom_Out
'
]
=
c_oAscSlideTransitionParams
.
Zoom_Out
;
prot
[
'
Zoom_AndRotate
'
]
=
c_oAscSlideTransitionParams
.
Zoom_AndRotate
;
window
[
'
AscCommon
'
]
=
window
[
'
AscCommon
'
]
||
{};
window
[
'
AscCommon
'
].
c_oSerFormat
=
c_oSerFormat
;
window
[
'
AscCommon
'
].
CurFileVersion
=
c_oSerFormat
.
Version
;
word/apiDefines.js
View file @
43375450
...
...
@@ -32,642 +32,671 @@
"
use strict
"
;
/** @enum {number} */
var
c_oAscZoomType
=
{
Current
:
0
,
FitWidth
:
1
,
FitPage
:
2
Current
:
0
,
FitWidth
:
1
,
FitPage
:
2
};
/
/ Right = 0; Left = 1; Center = 2; Justify = 3;
/
** @enum {number} */
var
c_oAscAlignType
=
{
LEFT
:
0
,
CENTER
:
1
,
RIGHT
:
2
,
JUSTIFY
:
3
,
TOP
:
4
,
MIDDLE
:
5
,
BOTTOM
:
6
LEFT
:
0
,
CENTER
:
1
,
RIGHT
:
2
,
JUSTIFY
:
3
,
TOP
:
4
,
MIDDLE
:
5
,
BOTTOM
:
6
};
/** @enum {number} */
var
c_oAscWrapStyle2
=
{
Inline
:
0
,
Square
:
1
,
Tight
:
2
,
Through
:
3
,
TopAndBottom
:
4
,
Behind
:
5
,
InFront
:
6
Inline
:
0
,
Square
:
1
,
Tight
:
2
,
Through
:
3
,
TopAndBottom
:
4
,
Behind
:
5
,
InFront
:
6
};
/** @enum {number} */
var
c_oAscTableSelectionType
=
{
Cell
:
0
,
Row
:
1
,
Column
:
2
,
Table
:
3
Cell
:
0
,
Row
:
1
,
Column
:
2
,
Table
:
3
};
/** @enum {number} */
var
c_oAscContextMenuTypes
=
{
Common
:
0
,
// Обычное контекстное меню
ChangeHdrFtr
:
1
// Специальное контестное меню для попадания в колонтитул
Common
:
0
,
// Обычное контекстное меню
ChangeHdrFtr
:
1
// Специальное контестное меню для попадания в колонтитул
};
/** @enum {number} */
var
c_oAscMouseMoveLockedObjectType
=
{
Common
:
0
,
Header
:
1
,
Footer
:
2
Common
:
0
,
Header
:
1
,
Footer
:
2
};
/** @enum {number} */
var
c_oAscCollaborativeMarksShowType
=
{
None
:
-
1
,
All
:
0
,
LastChanges
:
1
None
:
-
1
,
All
:
0
,
LastChanges
:
1
};
/**
* Типы горизонтального прилегания для автофигур.
* @type {{Center: number, Inside: number, Left: number, Outside: number, Right: number}}
* @enum {number}
*/
var
c_oAscAlignH
=
{
Center
:
0x00
,
Inside
:
0x01
,
Left
:
0x02
,
Outside
:
0x03
,
Right
:
0x04
Center
:
0x00
,
Inside
:
0x01
,
Left
:
0x02
,
Outside
:
0x03
,
Right
:
0x04
};
/** @enum {number} */
var
c_oAscChangeLevel
=
{
BringToFront
:
0x00
,
BringForward
:
0x01
,
SendToBack
:
0x02
,
BringBackward
:
0x03
BringToFront
:
0x00
,
BringForward
:
0x01
,
SendToBack
:
0x02
,
BringBackward
:
0x03
};
/**
* Типы вертикального прилегания для автофигур.
* @type {{Bottom: number, Center: number, Inside: number, Outside: number, Top: number}}
* @enum {number}
*/
var
c_oAscAlignV
=
{
Bottom
:
0x00
,
Center
:
0x01
,
Inside
:
0x02
,
Outside
:
0x03
,
Top
:
0x04
Bottom
:
0x00
,
Center
:
0x01
,
Inside
:
0x02
,
Outside
:
0x03
,
Top
:
0x04
};
/** @enum {number} */
var
c_oAscVertAlignJc
=
{
Top
:
0x00
,
// var vertalignjc_Top = 0x00;
Center
:
0x01
,
// var vertalignjc_Center = 0x01;
Bottom
:
0x02
// var vertalignjc_Bottom = 0x02
Top
:
0x00
,
// var vertalignjc_Top = 0x00;
Center
:
0x01
,
// var vertalignjc_Center = 0x01;
Bottom
:
0x02
// var vertalignjc_Bottom = 0x02
};
/** @enum {number} */
var
c_oAscTableLayout
=
{
AutoFit
:
0x00
,
Fixed
:
0x01
AutoFit
:
0x00
,
Fixed
:
0x01
};
/** @enum {number} */
var
c_oAscAlignShapeType
=
{
ALIGN_LEFT
:
0
,
ALIGN_RIGHT
:
1
,
ALIGN_TOP
:
2
,
ALIGN_BOTTOM
:
3
,
ALIGN_CENTER
:
4
,
ALIGN_MIDDLE
:
5
ALIGN_LEFT
:
0
,
ALIGN_RIGHT
:
1
,
ALIGN_TOP
:
2
,
ALIGN_BOTTOM
:
3
,
ALIGN_CENTER
:
4
,
ALIGN_MIDDLE
:
5
};
var
TABLE_STYLE_WIDTH_PIX
=
70
;
var
TABLE_STYLE_WIDTH_PIX
=
70
;
var
TABLE_STYLE_HEIGHT_PIX
=
50
;
/** @enum {number} */
var
c_oAscSectionBreakType
=
{
NextPage
:
0x00
,
OddPage
:
0x01
,
EvenPage
:
0x02
,
Continuous
:
0x03
,
Column
:
0x04
NextPage
:
0x00
,
OddPage
:
0x01
,
EvenPage
:
0x02
,
Continuous
:
0x03
,
Column
:
0x04
};
/** @enum {number} */
var
c_oAscMathMainType
=
{
Symbol
:
0x00
,
Fraction
:
0x01
,
Script
:
0x02
,
Radical
:
0x03
,
Integral
:
0x04
,
LargeOperator
:
0x05
,
Bracket
:
0x06
,
Function
:
0x07
,
Accent
:
0x08
,
LimitLog
:
0x09
,
Operator
:
0x0a
,
Matrix
:
0x0b
,
Empty_Content
:
0x0c
};
var
c_oAscMathMainTypeStrings
=
{};
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
Symbol
]
=
"
Symbols
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
Fraction
]
=
"
Fraction
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
Script
]
=
"
Script
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
Radical
]
=
"
Radical
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
Integral
]
=
"
Integral
"
;
Symbol
:
0x00
,
Fraction
:
0x01
,
Script
:
0x02
,
Radical
:
0x03
,
Integral
:
0x04
,
LargeOperator
:
0x05
,
Bracket
:
0x06
,
Function
:
0x07
,
Accent
:
0x08
,
LimitLog
:
0x09
,
Operator
:
0x0a
,
Matrix
:
0x0b
,
Empty_Content
:
0x0c
};
var
c_oAscMathMainTypeStrings
=
{};
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
Symbol
]
=
"
Symbols
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
Fraction
]
=
"
Fraction
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
Script
]
=
"
Script
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
Radical
]
=
"
Radical
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
Integral
]
=
"
Integral
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
LargeOperator
]
=
"
LargeOperator
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
Bracket
]
=
"
Bracket
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
Function
]
=
"
Function
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
Accent
]
=
"
Accent
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
LimitLog
]
=
"
LimitLog
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
Operator
]
=
"
Operator
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
Matrix
]
=
"
Matrix
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
Bracket
]
=
"
Bracket
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
Function
]
=
"
Function
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
Accent
]
=
"
Accent
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
LimitLog
]
=
"
LimitLog
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
Operator
]
=
"
Operator
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
Matrix
]
=
"
Matrix
"
;
c_oAscMathMainTypeStrings
[
c_oAscMathMainType
.
Empty_Content
]
=
"
Empty_Content
"
;
/** @enum {number} */
var
c_oAscMathType
=
{
//----------------------------------------------------------------------------------------------------------------------
Symbol_pm
:
0x00000000
,
Symbol_infinity
:
0x00000001
,
Symbol_equals
:
0x00000002
,
Symbol_neq
:
0x00000003
,
Symbol_about
:
0x00000004
,
Symbol_times
:
0x00000005
,
Symbol_div
:
0x00000006
,
Symbol_factorial
:
0x00000007
,
Symbol_propto
:
0x00000008
,
Symbol_less
:
0x00000009
,
Symbol_ll
:
0x0000000a
,
Symbol_greater
:
0x0000000b
,
Symbol_gg
:
0x0000000c
,
Symbol_leq
:
0x0000000d
,
Symbol_geq
:
0x0000000e
,
Symbol_mp
:
0x0000000f
,
Symbol_cong
:
0x00000010
,
Symbol_approx
:
0x00000011
,
Symbol_equiv
:
0x00000012
,
Symbol_forall
:
0x00000013
,
Symbol_additional
:
0x00000014
,
Symbol_partial
:
0x00000015
,
Symbol_sqrt
:
0x00000016
,
Symbol_cbrt
:
0x00000017
,
Symbol_qdrt
:
0x00000018
,
Symbol_cup
:
0x00000019
,
Symbol_cap
:
0x0000001a
,
Symbol_emptyset
:
0x0000001b
,
Symbol_percent
:
0x0000001c
,
Symbol_degree
:
0x0000001d
,
Symbol_fahrenheit
:
0x0000001e
,
Symbol_celsius
:
0x0000001f
,
Symbol_inc
:
0x00000020
,
Symbol_nabla
:
0x00000021
,
Symbol_exists
:
0x00000022
,
Symbol_notexists
:
0x00000023
,
Symbol_in
:
0x00000024
,
Symbol_ni
:
0x00000025
,
Symbol_leftarrow
:
0x00000026
,
Symbol_uparrow
:
0x00000027
,
Symbol_rightarrow
:
0x00000028
,
Symbol_downarrow
:
0x00000029
,
Symbol_leftrightarrow
:
0x0000002a
,
Symbol_therefore
:
0x0000002b
,
Symbol_plus
:
0x0000002c
,
Symbol_minus
:
0x0000002d
,
Symbol_not
:
0x0000002e
,
Symbol_ast
:
0x0000002f
,
Symbol_bullet
:
0x00000030
,
Symbol_vdots
:
0x00000031
,
Symbol_cdots
:
0x00000032
,
Symbol_rddots
:
0x00000033
,
Symbol_ddots
:
0x00000034
,
Symbol_aleph
:
0x00000035
,
Symbol_beth
:
0x00000036
,
Symbol_QED
:
0x00000037
,
Symbol_alpha
:
0x00010000
,
Symbol_beta
:
0x00010001
,
Symbol_gamma
:
0x00010002
,
Symbol_delta
:
0x00010003
,
Symbol_varepsilon
:
0x00010004
,
Symbol_epsilon
:
0x00010005
,
Symbol_zeta
:
0x00010006
,
Symbol_eta
:
0x00010007
,
Symbol_theta
:
0x00010008
,
Symbol_vartheta
:
0x00010009
,
Symbol_iota
:
0x0001000a
,
Symbol_kappa
:
0x0001000b
,
Symbol_lambda
:
0x0001000c
,
Symbol_mu
:
0x0001000d
,
Symbol_nu
:
0x0001000e
,
Symbol_xsi
:
0x0001000f
,
Symbol_o
:
0x00010010
,
Symbol_pi
:
0x00010011
,
Symbol_varpi
:
0x00010012
,
Symbol_rho
:
0x00010013
,
Symbol_varrho
:
0x00010014
,
Symbol_sigma
:
0x00010015
,
Symbol_varsigma
:
0x00010016
,
Symbol_tau
:
0x00010017
,
Symbol_upsilon
:
0x00010018
,
Symbol_varphi
:
0x00010019
,
Symbol_phi
:
0x0001001a
,
Symbol_chi
:
0x0001001b
,
Symbol_psi
:
0x0001001c
,
Symbol_omega
:
0x0001001d
,
Symbol_Alpha
:
0x00020000
,
Symbol_Beta
:
0x00020001
,
Symbol_Gamma
:
0x00020002
,
Symbol_Delta
:
0x00020003
,
Symbol_Epsilon
:
0x00020004
,
Symbol_Zeta
:
0x00020005
,
Symbol_Eta
:
0x00020006
,
Symbol_Theta
:
0x00020007
,
Symbol_Iota
:
0x00020008
,
Symbol_Kappa
:
0x00020009
,
Symbol_Lambda
:
0x0002000a
,
Symbol_Mu
:
0x0002000b
,
Symbol_Nu
:
0x0002000c
,
Symbol_Xsi
:
0x0002000d
,
Symbol_O
:
0x0002000e
,
Symbol_Pi
:
0x0002000f
,
Symbol_Rho
:
0x00020010
,
Symbol_Sigma
:
0x00020011
,
Symbol_Tau
:
0x00020012
,
Symbol_Upsilon
:
0x00020013
,
Symbol_Phi
:
0x00020014
,
Symbol_Chi
:
0x00020015
,
Symbol_Psi
:
0x00020016
,
Symbol_Omega
:
0x00020017
,
//----------------------------------------------------------------------------------------------------------------------
FractionVertical
:
0x01000000
,
FractionDiagonal
:
0x01000001
,
FractionHorizontal
:
0x01000002
,
FractionSmall
:
0x01000003
,
FractionDifferential_1
:
0x01010000
,
FractionDifferential_2
:
0x01010001
,
FractionDifferential_3
:
0x01010002
,
FractionDifferential_4
:
0x01010003
,
FractionPi_2
:
0x01010004
,
//----------------------------------------------------------------------------------------------------------------------
ScriptSup
:
0x02000000
,
ScriptSub
:
0x02000001
,
ScriptSubSup
:
0x02000002
,
ScriptSubSupLeft
:
0x02000003
,
ScriptCustom_1
:
0x02010000
,
ScriptCustom_2
:
0x02010001
,
ScriptCustom_3
:
0x02010002
,
ScriptCustom_4
:
0x02010003
,
//----------------------------------------------------------------------------------------------------------------------
RadicalSqrt
:
0x03000000
,
RadicalRoot_n
:
0x03000001
,
RadicalRoot_2
:
0x03000002
,
RadicalRoot_3
:
0x03000003
,
RadicalCustom_1
:
0x03010000
,
RadicalCustom_2
:
0x03010001
,
//----------------------------------------------------------------------------------------------------------------------
Integral
:
0x04000000
,
IntegralSubSup
:
0x04000001
,
IntegralCenterSubSup
:
0x04000002
,
IntegralDouble
:
0x04000003
,
IntegralDoubleSubSup
:
0x04000004
,
IntegralDoubleCenterSubSup
:
0x04000005
,
IntegralTriple
:
0x04000006
,
IntegralTripleSubSup
:
0x04000007
,
IntegralTripleCenterSubSup
:
0x04000008
,
IntegralOriented
:
0x04010000
,
IntegralOrientedSubSup
:
0x04010001
,
IntegralOrientedCenterSubSup
:
0x04010002
,
IntegralOrientedDouble
:
0x04010003
,
IntegralOrientedDoubleSubSup
:
0x04010004
,
IntegralOrientedDoubleCenterSubSup
:
0x04010005
,
IntegralOrientedTriple
:
0x04010006
,
IntegralOrientedTripleSubSup
:
0x04010007
,
IntegralOrientedTripleCenterSubSup
:
0x04010008
,
Integral_dx
:
0x04020000
,
Integral_dy
:
0x04020001
,
Integral_dtheta
:
0x04020002
,
//----------------------------------------------------------------------------------------------------------------------
LargeOperator_Sum
:
0x05000000
,
LargeOperator_Sum_CenterSubSup
:
0x05000001
,
LargeOperator_Sum_SubSup
:
0x05000002
,
LargeOperator_Sum_CenterSub
:
0x05000003
,
LargeOperator_Sum_Sub
:
0x05000004
,
LargeOperator_Prod
:
0x05010000
,
LargeOperator_Prod_CenterSubSup
:
0x05010001
,
LargeOperator_Prod_SubSup
:
0x05010002
,
LargeOperator_Prod_CenterSub
:
0x05010003
,
LargeOperator_Prod_Sub
:
0x05010004
,
LargeOperator_CoProd
:
0x05010005
,
LargeOperator_CoProd_CenterSubSup
:
0x05010006
,
LargeOperator_CoProd_SubSup
:
0x05010007
,
LargeOperator_CoProd_CenterSub
:
0x05010008
,
LargeOperator_CoProd_Sub
:
0x05010009
,
LargeOperator_Union
:
0x05020000
,
LargeOperator_Union_CenterSubSup
:
0x05020001
,
LargeOperator_Union_SubSup
:
0x05020002
,
LargeOperator_Union_CenterSub
:
0x05020003
,
LargeOperator_Union_Sub
:
0x05020004
,
LargeOperator_Intersection
:
0x05020005
,
LargeOperator_Intersection_CenterSubSup
:
0x05020006
,
LargeOperator_Intersection_SubSup
:
0x05020007
,
LargeOperator_Intersection_CenterSub
:
0x05020008
,
LargeOperator_Intersection_Sub
:
0x05020009
,
LargeOperator_Disjunction
:
0x05030000
,
LargeOperator_Disjunction_CenterSubSup
:
0x05030001
,
LargeOperator_Disjunction_SubSup
:
0x05030002
,
LargeOperator_Disjunction_CenterSub
:
0x05030003
,
LargeOperator_Disjunction_Sub
:
0x05030004
,
LargeOperator_Conjunction
:
0x05030005
,
LargeOperator_Conjunction_CenterSubSup
:
0x05030006
,
LargeOperator_Conjunction_SubSup
:
0x05030007
,
LargeOperator_Conjunction_CenterSub
:
0x05030008
,
LargeOperator_Conjunction_Sub
:
0x05030009
,
LargeOperator_Custom_1
:
0x05040000
,
LargeOperator_Custom_2
:
0x05040001
,
LargeOperator_Custom_3
:
0x05040002
,
LargeOperator_Custom_4
:
0x05040003
,
LargeOperator_Custom_5
:
0x05040004
,
//----------------------------------------------------------------------------------------------------------------------
Bracket_Round
:
0x06000000
,
Bracket_Square
:
0x06000001
,
Bracket_Curve
:
0x06000002
,
Bracket_Angle
:
0x06000003
,
Bracket_LowLim
:
0x06000004
,
Bracket_UppLim
:
0x06000005
,
Bracket_Line
:
0x06000006
,
Bracket_LineDouble
:
0x06000007
,
Bracket_Square_OpenOpen
:
0x06000008
,
Bracket_Square_CloseClose
:
0x06000009
,
Bracket_Square_CloseOpen
:
0x0600000a
,
Bracket_SquareDouble
:
0x0600000b
,
Bracket_Round_Delimiter_2
:
0x06010000
,
Bracket_Curve_Delimiter_2
:
0x06010001
,
Bracket_Angle_Delimiter_2
:
0x06010002
,
Bracket_Angle_Delimiter_3
:
0x06010003
,
Bracket_Round_OpenNone
:
0x06020000
,
Bracket_Round_NoneOpen
:
0x06020001
,
Bracket_Square_OpenNone
:
0x06020002
,
Bracket_Square_NoneOpen
:
0x06020003
,
Bracket_Curve_OpenNone
:
0x06020004
,
Bracket_Curve_NoneOpen
:
0x06020005
,
Bracket_Angle_OpenNone
:
0x06020006
,
Bracket_Angle_NoneOpen
:
0x06020007
,
Bracket_LowLim_OpenNone
:
0x06020008
,
Bracket_LowLim_NoneNone
:
0x06020009
,
Bracket_UppLim_OpenNone
:
0x0602000a
,
Bracket_UppLim_NoneOpen
:
0x0602000b
,
Bracket_Line_OpenNone
:
0x0602000c
,
Bracket_Line_NoneOpen
:
0x0602000d
,
Bracket_LineDouble_OpenNone
:
0x0602000e
,
Bracket_LineDouble_NoneOpen
:
0x0602000f
,
Bracket_SquareDouble_OpenNone
:
0x06020010
,
Bracket_SquareDouble_NoneOpen
:
0x06020011
,
Bracket_Custom_1
:
0x06030000
,
Bracket_Custom_2
:
0x06030001
,
Bracket_Custom_3
:
0x06030002
,
Bracket_Custom_4
:
0x06030003
,
Bracket_Custom_5
:
0x06040000
,
Bracket_Custom_6
:
0x06040001
,
Bracket_Custom_7
:
0x06040002
,
//----------------------------------------------------------------------------------------------------------------------
Function_Sin
:
0x07000000
,
Function_Cos
:
0x07000001
,
Function_Tan
:
0x07000002
,
Function_Csc
:
0x07000003
,
Function_Sec
:
0x07000004
,
Function_Cot
:
0x07000005
,
Function_1_Sin
:
0x07010000
,
Function_1_Cos
:
0x07010001
,
Function_1_Tan
:
0x07010002
,
Function_1_Csc
:
0x07010003
,
Function_1_Sec
:
0x07010004
,
Function_1_Cot
:
0x07010005
,
Function_Sinh
:
0x07020000
,
Function_Cosh
:
0x07020001
,
Function_Tanh
:
0x07020002
,
Function_Csch
:
0x07020003
,
Function_Sech
:
0x07020004
,
Function_Coth
:
0x07020005
,
Function_1_Sinh
:
0x07030000
,
Function_1_Cosh
:
0x07030001
,
Function_1_Tanh
:
0x07030002
,
Function_1_Csch
:
0x07030003
,
Function_1_Sech
:
0x07030004
,
Function_1_Coth
:
0x07030005
,
Function_Custom_1
:
0x07040000
,
Function_Custom_2
:
0x07040001
,
Function_Custom_3
:
0x07040002
,
//----------------------------------------------------------------------------------------------------------------------
Accent_Dot
:
0x08000000
,
Accent_DDot
:
0x08000001
,
Accent_DDDot
:
0x08000002
,
Accent_Hat
:
0x08000003
,
Accent_Check
:
0x08000004
,
Accent_Accent
:
0x08000005
,
Accent_Grave
:
0x08000006
,
Accent_Smile
:
0x08000007
,
Accent_Tilde
:
0x08000008
,
Accent_Bar
:
0x08000009
,
Accent_DoubleBar
:
0x0800000a
,
Accent_CurveBracketTop
:
0x0800000b
,
Accent_CurveBracketBot
:
0x0800000c
,
Accent_GroupTop
:
0x0800000d
,
Accent_GroupBot
:
0x0800000e
,
Accent_ArrowL
:
0x0800000f
,
Accent_ArrowR
:
0x08000010
,
Accent_ArrowD
:
0x08000011
,
Accent_HarpoonL
:
0x08000012
,
Accent_HarpoonR
:
0x08000013
,
Accent_BorderBox
:
0x08010000
,
Accent_BorderBoxCustom
:
0x08010001
,
Accent_BarTop
:
0x08020000
,
Accent_BarBot
:
0x08020001
,
Accent_Custom_1
:
0x08030000
,
Accent_Custom_2
:
0x08030001
,
Accent_Custom_3
:
0x08030002
,
//----------------------------------------------------------------------------------------------------------------------
LimitLog_LogBase
:
0x09000000
,
LimitLog_Log
:
0x09000001
,
LimitLog_Lim
:
0x09000002
,
LimitLog_Min
:
0x09000003
,
LimitLog_Max
:
0x09000004
,
LimitLog_Ln
:
0x09000005
,
LimitLog_Custom_1
:
0x09010000
,
LimitLog_Custom_2
:
0x09010001
,
//----------------------------------------------------------------------------------------------------------------------
Operator_ColonEquals
:
0x0a000000
,
Operator_EqualsEquals
:
0x0a000001
,
Operator_PlusEquals
:
0x0a000002
,
Operator_MinusEquals
:
0x0a000003
,
Operator_Definition
:
0x0a000004
,
Operator_UnitOfMeasure
:
0x0a000005
,
Operator_DeltaEquals
:
0x0a000006
,
Operator_ArrowL_Top
:
0x0a010000
,
Operator_ArrowR_Top
:
0x0a010001
,
Operator_ArrowL_Bot
:
0x0a010002
,
Operator_ArrowR_Bot
:
0x0a010003
,
Operator_DoubleArrowL_Top
:
0x0a010004
,
Operator_DoubleArrowR_Top
:
0x0a010005
,
Operator_DoubleArrowL_Bot
:
0x0a010006
,
Operator_DoubleArrowR_Bot
:
0x0a010007
,
Operator_ArrowD_Top
:
0x0a010008
,
Operator_ArrowD_Bot
:
0x0a010009
,
Operator_DoubleArrowD_Top
:
0x0a01000a
,
Operator_DoubleArrowD_Bot
:
0x0a01000b
,
Operator_Custom_1
:
0x0a020000
,
Operator_Custom_2
:
0x0a020001
,
//----------------------------------------------------------------------------------------------------------------------
Matrix_1_2
:
0x0b000000
,
Matrix_2_1
:
0x0b000001
,
Matrix_1_3
:
0x0b000002
,
Matrix_3_1
:
0x0b000003
,
Matrix_2_2
:
0x0b000004
,
Matrix_2_3
:
0x0b000005
,
Matrix_3_2
:
0x0b000006
,
Matrix_3_3
:
0x0b000007
,
Matrix_Dots_Center
:
0x0b010000
,
Matrix_Dots_Baseline
:
0x0b010001
,
Matrix_Dots_Vertical
:
0x0b010002
,
Matrix_Dots_Diagonal
:
0x0b010003
,
Matrix_Identity_2
:
0x0b020000
,
Matrix_Identity_2_NoZeros
:
0x0b020001
,
Matrix_Identity_3
:
0x0b020002
,
Matrix_Identity_3_NoZeros
:
0x0b020003
,
Matrix_2_2_RoundBracket
:
0x0b030000
,
Matrix_2_2_SquareBracket
:
0x0b030001
,
Matrix_2_2_LineBracket
:
0x0b030002
,
Matrix_2_2_DLineBracket
:
0x0b030003
,
Matrix_Flat_Round
:
0x0b040000
,
Matrix_Flat_Square
:
0x0b040001
,
//----------------------------------------------------------------------------------------------------------------------
Default_Text
:
0x0c000000
};
//----------------------------------------------------------------------------------------------------------------------
Symbol_pm
:
0x00000000
,
Symbol_infinity
:
0x00000001
,
Symbol_equals
:
0x00000002
,
Symbol_neq
:
0x00000003
,
Symbol_about
:
0x00000004
,
Symbol_times
:
0x00000005
,
Symbol_div
:
0x00000006
,
Symbol_factorial
:
0x00000007
,
Symbol_propto
:
0x00000008
,
Symbol_less
:
0x00000009
,
Symbol_ll
:
0x0000000a
,
Symbol_greater
:
0x0000000b
,
Symbol_gg
:
0x0000000c
,
Symbol_leq
:
0x0000000d
,
Symbol_geq
:
0x0000000e
,
Symbol_mp
:
0x0000000f
,
Symbol_cong
:
0x00000010
,
Symbol_approx
:
0x00000011
,
Symbol_equiv
:
0x00000012
,
Symbol_forall
:
0x00000013
,
Symbol_additional
:
0x00000014
,
Symbol_partial
:
0x00000015
,
Symbol_sqrt
:
0x00000016
,
Symbol_cbrt
:
0x00000017
,
Symbol_qdrt
:
0x00000018
,
Symbol_cup
:
0x00000019
,
Symbol_cap
:
0x0000001a
,
Symbol_emptyset
:
0x0000001b
,
Symbol_percent
:
0x0000001c
,
Symbol_degree
:
0x0000001d
,
Symbol_fahrenheit
:
0x0000001e
,
Symbol_celsius
:
0x0000001f
,
Symbol_inc
:
0x00000020
,
Symbol_nabla
:
0x00000021
,
Symbol_exists
:
0x00000022
,
Symbol_notexists
:
0x00000023
,
Symbol_in
:
0x00000024
,
Symbol_ni
:
0x00000025
,
Symbol_leftarrow
:
0x00000026
,
Symbol_uparrow
:
0x00000027
,
Symbol_rightarrow
:
0x00000028
,
Symbol_downarrow
:
0x00000029
,
Symbol_leftrightarrow
:
0x0000002a
,
Symbol_therefore
:
0x0000002b
,
Symbol_plus
:
0x0000002c
,
Symbol_minus
:
0x0000002d
,
Symbol_not
:
0x0000002e
,
Symbol_ast
:
0x0000002f
,
Symbol_bullet
:
0x00000030
,
Symbol_vdots
:
0x00000031
,
Symbol_cdots
:
0x00000032
,
Symbol_rddots
:
0x00000033
,
Symbol_ddots
:
0x00000034
,
Symbol_aleph
:
0x00000035
,
Symbol_beth
:
0x00000036
,
Symbol_QED
:
0x00000037
,
Symbol_alpha
:
0x00010000
,
Symbol_beta
:
0x00010001
,
Symbol_gamma
:
0x00010002
,
Symbol_delta
:
0x00010003
,
Symbol_varepsilon
:
0x00010004
,
Symbol_epsilon
:
0x00010005
,
Symbol_zeta
:
0x00010006
,
Symbol_eta
:
0x00010007
,
Symbol_theta
:
0x00010008
,
Symbol_vartheta
:
0x00010009
,
Symbol_iota
:
0x0001000a
,
Symbol_kappa
:
0x0001000b
,
Symbol_lambda
:
0x0001000c
,
Symbol_mu
:
0x0001000d
,
Symbol_nu
:
0x0001000e
,
Symbol_xsi
:
0x0001000f
,
Symbol_o
:
0x00010010
,
Symbol_pi
:
0x00010011
,
Symbol_varpi
:
0x00010012
,
Symbol_rho
:
0x00010013
,
Symbol_varrho
:
0x00010014
,
Symbol_sigma
:
0x00010015
,
Symbol_varsigma
:
0x00010016
,
Symbol_tau
:
0x00010017
,
Symbol_upsilon
:
0x00010018
,
Symbol_varphi
:
0x00010019
,
Symbol_phi
:
0x0001001a
,
Symbol_chi
:
0x0001001b
,
Symbol_psi
:
0x0001001c
,
Symbol_omega
:
0x0001001d
,
Symbol_Alpha
:
0x00020000
,
Symbol_Beta
:
0x00020001
,
Symbol_Gamma
:
0x00020002
,
Symbol_Delta
:
0x00020003
,
Symbol_Epsilon
:
0x00020004
,
Symbol_Zeta
:
0x00020005
,
Symbol_Eta
:
0x00020006
,
Symbol_Theta
:
0x00020007
,
Symbol_Iota
:
0x00020008
,
Symbol_Kappa
:
0x00020009
,
Symbol_Lambda
:
0x0002000a
,
Symbol_Mu
:
0x0002000b
,
Symbol_Nu
:
0x0002000c
,
Symbol_Xsi
:
0x0002000d
,
Symbol_O
:
0x0002000e
,
Symbol_Pi
:
0x0002000f
,
Symbol_Rho
:
0x00020010
,
Symbol_Sigma
:
0x00020011
,
Symbol_Tau
:
0x00020012
,
Symbol_Upsilon
:
0x00020013
,
Symbol_Phi
:
0x00020014
,
Symbol_Chi
:
0x00020015
,
Symbol_Psi
:
0x00020016
,
Symbol_Omega
:
0x00020017
,
//----------------------------------------------------------------------------------------------------------------------
FractionVertical
:
0x01000000
,
FractionDiagonal
:
0x01000001
,
FractionHorizontal
:
0x01000002
,
FractionSmall
:
0x01000003
,
FractionDifferential_1
:
0x01010000
,
FractionDifferential_2
:
0x01010001
,
FractionDifferential_3
:
0x01010002
,
FractionDifferential_4
:
0x01010003
,
FractionPi_2
:
0x01010004
,
//----------------------------------------------------------------------------------------------------------------------
ScriptSup
:
0x02000000
,
ScriptSub
:
0x02000001
,
ScriptSubSup
:
0x02000002
,
ScriptSubSupLeft
:
0x02000003
,
ScriptCustom_1
:
0x02010000
,
ScriptCustom_2
:
0x02010001
,
ScriptCustom_3
:
0x02010002
,
ScriptCustom_4
:
0x02010003
,
//----------------------------------------------------------------------------------------------------------------------
RadicalSqrt
:
0x03000000
,
RadicalRoot_n
:
0x03000001
,
RadicalRoot_2
:
0x03000002
,
RadicalRoot_3
:
0x03000003
,
RadicalCustom_1
:
0x03010000
,
RadicalCustom_2
:
0x03010001
,
//----------------------------------------------------------------------------------------------------------------------
Integral
:
0x04000000
,
IntegralSubSup
:
0x04000001
,
IntegralCenterSubSup
:
0x04000002
,
IntegralDouble
:
0x04000003
,
IntegralDoubleSubSup
:
0x04000004
,
IntegralDoubleCenterSubSup
:
0x04000005
,
IntegralTriple
:
0x04000006
,
IntegralTripleSubSup
:
0x04000007
,
IntegralTripleCenterSubSup
:
0x04000008
,
IntegralOriented
:
0x04010000
,
IntegralOrientedSubSup
:
0x04010001
,
IntegralOrientedCenterSubSup
:
0x04010002
,
IntegralOrientedDouble
:
0x04010003
,
IntegralOrientedDoubleSubSup
:
0x04010004
,
IntegralOrientedDoubleCenterSubSup
:
0x04010005
,
IntegralOrientedTriple
:
0x04010006
,
IntegralOrientedTripleSubSup
:
0x04010007
,
IntegralOrientedTripleCenterSubSup
:
0x04010008
,
Integral_dx
:
0x04020000
,
Integral_dy
:
0x04020001
,
Integral_dtheta
:
0x04020002
,
//----------------------------------------------------------------------------------------------------------------------
LargeOperator_Sum
:
0x05000000
,
LargeOperator_Sum_CenterSubSup
:
0x05000001
,
LargeOperator_Sum_SubSup
:
0x05000002
,
LargeOperator_Sum_CenterSub
:
0x05000003
,
LargeOperator_Sum_Sub
:
0x05000004
,
LargeOperator_Prod
:
0x05010000
,
LargeOperator_Prod_CenterSubSup
:
0x05010001
,
LargeOperator_Prod_SubSup
:
0x05010002
,
LargeOperator_Prod_CenterSub
:
0x05010003
,
LargeOperator_Prod_Sub
:
0x05010004
,
LargeOperator_CoProd
:
0x05010005
,
LargeOperator_CoProd_CenterSubSup
:
0x05010006
,
LargeOperator_CoProd_SubSup
:
0x05010007
,
LargeOperator_CoProd_CenterSub
:
0x05010008
,
LargeOperator_CoProd_Sub
:
0x05010009
,
LargeOperator_Union
:
0x05020000
,
LargeOperator_Union_CenterSubSup
:
0x05020001
,
LargeOperator_Union_SubSup
:
0x05020002
,
LargeOperator_Union_CenterSub
:
0x05020003
,
LargeOperator_Union_Sub
:
0x05020004
,
LargeOperator_Intersection
:
0x05020005
,
LargeOperator_Intersection_CenterSubSup
:
0x05020006
,
LargeOperator_Intersection_SubSup
:
0x05020007
,
LargeOperator_Intersection_CenterSub
:
0x05020008
,
LargeOperator_Intersection_Sub
:
0x05020009
,
LargeOperator_Disjunction
:
0x05030000
,
LargeOperator_Disjunction_CenterSubSup
:
0x05030001
,
LargeOperator_Disjunction_SubSup
:
0x05030002
,
LargeOperator_Disjunction_CenterSub
:
0x05030003
,
LargeOperator_Disjunction_Sub
:
0x05030004
,
LargeOperator_Conjunction
:
0x05030005
,
LargeOperator_Conjunction_CenterSubSup
:
0x05030006
,
LargeOperator_Conjunction_SubSup
:
0x05030007
,
LargeOperator_Conjunction_CenterSub
:
0x05030008
,
LargeOperator_Conjunction_Sub
:
0x05030009
,
LargeOperator_Custom_1
:
0x05040000
,
LargeOperator_Custom_2
:
0x05040001
,
LargeOperator_Custom_3
:
0x05040002
,
LargeOperator_Custom_4
:
0x05040003
,
LargeOperator_Custom_5
:
0x05040004
,
//----------------------------------------------------------------------------------------------------------------------
Bracket_Round
:
0x06000000
,
Bracket_Square
:
0x06000001
,
Bracket_Curve
:
0x06000002
,
Bracket_Angle
:
0x06000003
,
Bracket_LowLim
:
0x06000004
,
Bracket_UppLim
:
0x06000005
,
Bracket_Line
:
0x06000006
,
Bracket_LineDouble
:
0x06000007
,
Bracket_Square_OpenOpen
:
0x06000008
,
Bracket_Square_CloseClose
:
0x06000009
,
Bracket_Square_CloseOpen
:
0x0600000a
,
Bracket_SquareDouble
:
0x0600000b
,
Bracket_Round_Delimiter_2
:
0x06010000
,
Bracket_Curve_Delimiter_2
:
0x06010001
,
Bracket_Angle_Delimiter_2
:
0x06010002
,
Bracket_Angle_Delimiter_3
:
0x06010003
,
Bracket_Round_OpenNone
:
0x06020000
,
Bracket_Round_NoneOpen
:
0x06020001
,
Bracket_Square_OpenNone
:
0x06020002
,
Bracket_Square_NoneOpen
:
0x06020003
,
Bracket_Curve_OpenNone
:
0x06020004
,
Bracket_Curve_NoneOpen
:
0x06020005
,
Bracket_Angle_OpenNone
:
0x06020006
,
Bracket_Angle_NoneOpen
:
0x06020007
,
Bracket_LowLim_OpenNone
:
0x06020008
,
Bracket_LowLim_NoneNone
:
0x06020009
,
Bracket_UppLim_OpenNone
:
0x0602000a
,
Bracket_UppLim_NoneOpen
:
0x0602000b
,
Bracket_Line_OpenNone
:
0x0602000c
,
Bracket_Line_NoneOpen
:
0x0602000d
,
Bracket_LineDouble_OpenNone
:
0x0602000e
,
Bracket_LineDouble_NoneOpen
:
0x0602000f
,
Bracket_SquareDouble_OpenNone
:
0x06020010
,
Bracket_SquareDouble_NoneOpen
:
0x06020011
,
Bracket_Custom_1
:
0x06030000
,
Bracket_Custom_2
:
0x06030001
,
Bracket_Custom_3
:
0x06030002
,
Bracket_Custom_4
:
0x06030003
,
Bracket_Custom_5
:
0x06040000
,
Bracket_Custom_6
:
0x06040001
,
Bracket_Custom_7
:
0x06040002
,
//----------------------------------------------------------------------------------------------------------------------
Function_Sin
:
0x07000000
,
Function_Cos
:
0x07000001
,
Function_Tan
:
0x07000002
,
Function_Csc
:
0x07000003
,
Function_Sec
:
0x07000004
,
Function_Cot
:
0x07000005
,
Function_1_Sin
:
0x07010000
,
Function_1_Cos
:
0x07010001
,
Function_1_Tan
:
0x07010002
,
Function_1_Csc
:
0x07010003
,
Function_1_Sec
:
0x07010004
,
Function_1_Cot
:
0x07010005
,
Function_Sinh
:
0x07020000
,
Function_Cosh
:
0x07020001
,
Function_Tanh
:
0x07020002
,
Function_Csch
:
0x07020003
,
Function_Sech
:
0x07020004
,
Function_Coth
:
0x07020005
,
Function_1_Sinh
:
0x07030000
,
Function_1_Cosh
:
0x07030001
,
Function_1_Tanh
:
0x07030002
,
Function_1_Csch
:
0x07030003
,
Function_1_Sech
:
0x07030004
,
Function_1_Coth
:
0x07030005
,
Function_Custom_1
:
0x07040000
,
Function_Custom_2
:
0x07040001
,
Function_Custom_3
:
0x07040002
,
//----------------------------------------------------------------------------------------------------------------------
Accent_Dot
:
0x08000000
,
Accent_DDot
:
0x08000001
,
Accent_DDDot
:
0x08000002
,
Accent_Hat
:
0x08000003
,
Accent_Check
:
0x08000004
,
Accent_Accent
:
0x08000005
,
Accent_Grave
:
0x08000006
,
Accent_Smile
:
0x08000007
,
Accent_Tilde
:
0x08000008
,
Accent_Bar
:
0x08000009
,
Accent_DoubleBar
:
0x0800000a
,
Accent_CurveBracketTop
:
0x0800000b
,
Accent_CurveBracketBot
:
0x0800000c
,
Accent_GroupTop
:
0x0800000d
,
Accent_GroupBot
:
0x0800000e
,
Accent_ArrowL
:
0x0800000f
,
Accent_ArrowR
:
0x08000010
,
Accent_ArrowD
:
0x08000011
,
Accent_HarpoonL
:
0x08000012
,
Accent_HarpoonR
:
0x08000013
,
Accent_BorderBox
:
0x08010000
,
Accent_BorderBoxCustom
:
0x08010001
,
Accent_BarTop
:
0x08020000
,
Accent_BarBot
:
0x08020001
,
Accent_Custom_1
:
0x08030000
,
Accent_Custom_2
:
0x08030001
,
Accent_Custom_3
:
0x08030002
,
//----------------------------------------------------------------------------------------------------------------------
LimitLog_LogBase
:
0x09000000
,
LimitLog_Log
:
0x09000001
,
LimitLog_Lim
:
0x09000002
,
LimitLog_Min
:
0x09000003
,
LimitLog_Max
:
0x09000004
,
LimitLog_Ln
:
0x09000005
,
LimitLog_Custom_1
:
0x09010000
,
LimitLog_Custom_2
:
0x09010001
,
//----------------------------------------------------------------------------------------------------------------------
Operator_ColonEquals
:
0x0a000000
,
Operator_EqualsEquals
:
0x0a000001
,
Operator_PlusEquals
:
0x0a000002
,
Operator_MinusEquals
:
0x0a000003
,
Operator_Definition
:
0x0a000004
,
Operator_UnitOfMeasure
:
0x0a000005
,
Operator_DeltaEquals
:
0x0a000006
,
Operator_ArrowL_Top
:
0x0a010000
,
Operator_ArrowR_Top
:
0x0a010001
,
Operator_ArrowL_Bot
:
0x0a010002
,
Operator_ArrowR_Bot
:
0x0a010003
,
Operator_DoubleArrowL_Top
:
0x0a010004
,
Operator_DoubleArrowR_Top
:
0x0a010005
,
Operator_DoubleArrowL_Bot
:
0x0a010006
,
Operator_DoubleArrowR_Bot
:
0x0a010007
,
Operator_ArrowD_Top
:
0x0a010008
,
Operator_ArrowD_Bot
:
0x0a010009
,
Operator_DoubleArrowD_Top
:
0x0a01000a
,
Operator_DoubleArrowD_Bot
:
0x0a01000b
,
Operator_Custom_1
:
0x0a020000
,
Operator_Custom_2
:
0x0a020001
,
//----------------------------------------------------------------------------------------------------------------------
Matrix_1_2
:
0x0b000000
,
Matrix_2_1
:
0x0b000001
,
Matrix_1_3
:
0x0b000002
,
Matrix_3_1
:
0x0b000003
,
Matrix_2_2
:
0x0b000004
,
Matrix_2_3
:
0x0b000005
,
Matrix_3_2
:
0x0b000006
,
Matrix_3_3
:
0x0b000007
,
Matrix_Dots_Center
:
0x0b010000
,
Matrix_Dots_Baseline
:
0x0b010001
,
Matrix_Dots_Vertical
:
0x0b010002
,
Matrix_Dots_Diagonal
:
0x0b010003
,
Matrix_Identity_2
:
0x0b020000
,
Matrix_Identity_2_NoZeros
:
0x0b020001
,
Matrix_Identity_3
:
0x0b020002
,
Matrix_Identity_3_NoZeros
:
0x0b020003
,
Matrix_2_2_RoundBracket
:
0x0b030000
,
Matrix_2_2_SquareBracket
:
0x0b030001
,
Matrix_2_2_LineBracket
:
0x0b030002
,
Matrix_2_2_DLineBracket
:
0x0b030003
,
Matrix_Flat_Round
:
0x0b040000
,
Matrix_Flat_Square
:
0x0b040001
,
//----------------------------------------------------------------------------------------------------------------------
Default_Text
:
0x0c000000
};
/** @enum {number} */
var
c_oAscMathInterfaceType
=
{
Common
:
0x00
,
Fraction
:
0x01
,
Script
:
0x02
,
Radical
:
0x03
,
LargeOperator
:
0x04
,
Delimiter
:
0x05
,
Function
:
0x06
,
Accent
:
0x07
,
BorderBox
:
0x08
,
Bar
:
0x09
,
Box
:
0x0a
,
Limit
:
0x0b
,
GroupChar
:
0x0c
,
Matrix
:
0x0d
,
EqArray
:
0x0e
,
Phantom
:
0x0f
};
Common
:
0x00
,
Fraction
:
0x01
,
Script
:
0x02
,
Radical
:
0x03
,
LargeOperator
:
0x04
,
Delimiter
:
0x05
,
Function
:
0x06
,
Accent
:
0x07
,
BorderBox
:
0x08
,
Bar
:
0x09
,
Box
:
0x0a
,
Limit
:
0x0b
,
GroupChar
:
0x0c
,
Matrix
:
0x0d
,
EqArray
:
0x0e
,
Phantom
:
0x0f
};
/** @enum {number} */
var
c_oAscMathInterfaceBarPos
=
{
Top
:
0
,
Bottom
:
1
Top
:
0
,
Bottom
:
1
};
/** @enum {number} */
var
c_oAscMathInterfaceScript
=
{
None
:
0x000
,
// Удаление скрипта
Sup
:
0x001
,
Sub
:
0x002
,
SubSup
:
0x003
,
PreSubSup
:
0x004
None
:
0x000
,
// Удаление скрипта
Sup
:
0x001
,
Sub
:
0x002
,
SubSup
:
0x003
,
PreSubSup
:
0x004
};
/** @enum {number} */
var
c_oAscMathInterfaceFraction
=
{
Bar
:
0x001
,
Skewed
:
0x002
,
Linear
:
0x003
,
NoBar
:
0x004
Bar
:
0x001
,
Skewed
:
0x002
,
Linear
:
0x003
,
NoBar
:
0x004
};
/** @enum {number} */
var
c_oAscMathInterfaceLimitPos
=
{
None
:
-
1
,
// Удаление предела
Top
:
0
,
Bottom
:
1
None
:
-
1
,
// Удаление предела
Top
:
0
,
Bottom
:
1
};
/** @enum {number} */
var
c_oAscMathInterfaceMatrixMatrixAlign
=
{
Top
:
0
,
Center
:
1
,
Bottom
:
2
Top
:
0
,
Center
:
1
,
Bottom
:
2
};
/** @enum {number} */
var
c_oAscMathInterfaceMatrixColumnAlign
=
{
Left
:
0
,
Center
:
1
,
Right
:
2
Left
:
0
,
Center
:
1
,
Right
:
2
};
/** @enum {number} */
var
c_oAscMathInterfaceMatrixRowRule
=
{
Single
:
0x00
,
OneAndHalf
:
0x01
,
Double
:
0x02
,
Exactly
:
0x03
,
Multiple
:
0x04
Single
:
0x00
,
OneAndHalf
:
0x01
,
Double
:
0x02
,
Exactly
:
0x03
,
Multiple
:
0x04
};
/** @enum {number} */
var
c_oAscMathInterfaceMatrixColumnRule
=
{
Single
:
0x00
,
OneAndHalf
:
0x01
,
Double
:
0x02
,
Exactly
:
0x03
,
Multiple
:
0x04
Single
:
0x00
,
OneAndHalf
:
0x01
,
Double
:
0x02
,
Exactly
:
0x03
,
Multiple
:
0x04
};
/** @enum {number} */
var
c_oAscMathInterfaceEqArrayAlign
=
{
Top
:
0
,
Center
:
1
,
Bottom
:
2
Top
:
0
,
Center
:
1
,
Bottom
:
2
};
/** @enum {number} */
var
c_oAscMathInterfaceEqArrayLineRule
=
{
Single
:
0x00
,
OneAndHalf
:
0x01
,
Double
:
0x02
,
Exactly
:
0x03
,
Multiple
:
0x04
Single
:
0x00
,
OneAndHalf
:
0x01
,
Double
:
0x02
,
Exactly
:
0x03
,
Multiple
:
0x04
};
/** @enum {number} */
var
c_oAscMathInterfaceNaryLimitLocation
=
{
UndOvr
:
0
,
SubSup
:
1
UndOvr
:
0
,
SubSup
:
1
};
/** @enum {number} */
var
c_oAscMathInterfaceGroupCharPos
=
{
None
:
-
1
,
// Удаление GroupChar
Top
:
0
,
Bottom
:
1
None
:
-
1
,
// Удаление GroupChar
Top
:
0
,
Bottom
:
1
};
/** @enum {number} */
var
c_oAscMathInterfaceSettingsBrkBin
=
{
BreakRepeat
:
0x00
,
BreakBefore
:
0x01
,
BreakAfter
:
0x02
BreakRepeat
:
0x00
,
BreakBefore
:
0x01
,
BreakAfter
:
0x02
};
/** @enum {number} */
var
c_oAscMathInterfaceSettingsAlign
=
{
Left
:
0
,
Center
:
1
,
Right
:
2
,
Justify
:
3
Left
:
0
,
Center
:
1
,
Right
:
2
,
Justify
:
3
};
/** @enum {number} */
var
c_oAscRevisionsChangeType
=
{
Unknown
:
0x00
,
TextAdd
:
0x01
,
TextRem
:
0x02
,
ParaAdd
:
0x03
,
ParaRem
:
0x04
,
TextPr
:
0x05
,
ParaPr
:
0x06
Unknown
:
0x00
,
TextAdd
:
0x01
,
TextRem
:
0x02
,
ParaAdd
:
0x03
,
ParaRem
:
0x04
,
TextPr
:
0x05
,
ParaPr
:
0x06
};
var
c_oAscRevisionsObjectType
=
{
Image
:
0
,
Shape
:
1
,
Chart
:
2
,
MathEquation
:
3
/** @enum {number} */
var
c_oAscRevisionsObjectType
=
{
Image
:
0
,
Shape
:
1
,
Chart
:
2
,
MathEquation
:
3
};
var
c_oSerFormat
=
{
Version
:
5
,
//1.0.0.5
Signature
:
"
DOCY
"
Version
:
5
,
//1.0.0.5
Signature
:
"
DOCY
"
};
window
[
"
flat_desine
"
]
=
false
;
...
...
@@ -675,141 +704,140 @@ window["flat_desine"] = false;
//------------------------------------------------------------export---------------------------------------------------
var
prot
;
window
[
'
Asc
'
]
=
window
[
'
Asc
'
]
||
{};
window
[
'
Asc
'
][
'
c_oAscWrapStyle2
'
]
=
c_oAscWrapStyle2
;
prot
=
c_oAscWrapStyle2
;
prot
[
'
Inline
'
]
=
prot
.
Inline
;
prot
[
'
Square
'
]
=
prot
.
Square
;
prot
[
'
Tight
'
]
=
prot
.
Tight
;
prot
[
'
Through
'
]
=
prot
.
Through
;
prot
[
'
TopAndBottom
'
]
=
prot
.
TopAndBottom
;
prot
[
'
Behind
'
]
=
prot
.
Behind
;
prot
[
'
InFront
'
]
=
prot
.
InFront
;
window
[
'
Asc
'
][
'
c_oAscContextMenuTypes
'
]
=
window
[
'
Asc
'
].
c_oAscContextMenuTypes
=
c_oAscContextMenuTypes
;
prot
=
c_oAscContextMenuTypes
;
prot
[
'
Common
'
]
=
prot
.
Common
;
prot
[
'
ChangeHdrFtr
'
]
=
prot
.
ChangeHdrFtr
;
window
[
'
Asc
'
][
'
c_oAscCollaborativeMarksShowType
'
]
=
c_oAscCollaborativeMarksShowType
;
prot
=
c_oAscCollaborativeMarksShowType
;
prot
[
'
None
'
]
=
prot
.
None
;
prot
[
'
All
'
]
=
prot
.
All
;
prot
[
'
LastChanges
'
]
=
prot
.
LastChanges
;
window
[
'
Asc
'
][
'
c_oAscAlignH
'
]
=
c_oAscAlignH
;
prot
=
c_oAscAlignH
;
prot
[
'
Center
'
]
=
prot
.
Center
;
prot
[
'
Inside
'
]
=
prot
.
Inside
;
prot
[
'
Left
'
]
=
prot
.
Left
;
prot
[
'
Outside
'
]
=
prot
.
Outside
;
prot
[
'
Right
'
]
=
prot
.
Right
;
window
[
'
Asc
'
][
'
c_oAscAlignV
'
]
=
c_oAscAlignV
;
prot
=
c_oAscAlignV
;
prot
[
'
Bottom
'
]
=
prot
.
Bottom
;
prot
[
'
Center
'
]
=
prot
.
Center
;
prot
[
'
Inside
'
]
=
prot
.
Inside
;
prot
[
'
Outside
'
]
=
prot
.
Outside
;
prot
[
'
Top
'
]
=
prot
.
Top
;
window
[
'
Asc
'
][
'
c_oAscChangeLevel
'
]
=
c_oAscChangeLevel
;
prot
=
c_oAscChangeLevel
;
prot
[
'
BringToFront
'
]
=
prot
.
BringToFront
;
prot
[
'
BringForward
'
]
=
prot
.
BringForward
;
prot
[
'
SendToBack
'
]
=
prot
.
SendToBack
;
prot
[
'
BringBackward
'
]
=
prot
.
BringBackward
;
window
[
'
Asc
'
][
'
c_oAscVertAlignJc
'
]
=
c_oAscVertAlignJc
;
prot
=
c_oAscVertAlignJc
;
prot
[
'
Top
'
]
=
prot
.
Top
;
prot
[
'
Center
'
]
=
prot
.
Center
;
prot
[
'
Bottom
'
]
=
prot
.
Bottom
;
window
[
'
Asc
'
][
'
c_oAscTableLayout
'
]
=
c_oAscTableLayout
;
prot
=
c_oAscTableLayout
;
prot
[
'
AutoFit
'
]
=
prot
.
AutoFit
;
prot
[
'
Fixed
'
]
=
prot
.
Fixed
;
window
[
'
Asc
'
][
'
c_oAscAlignShapeType
'
]
=
c_oAscAlignShapeType
;
prot
=
c_oAscAlignShapeType
;
prot
[
'
ALIGN_LEFT
'
]
=
prot
.
ALIGN_LEFT
;
prot
[
'
ALIGN_RIGHT
'
]
=
prot
.
ALIGN_RIGHT
;
prot
[
'
ALIGN_TOP
'
]
=
prot
.
ALIGN_TOP
;
prot
[
'
ALIGN_BOTTOM
'
]
=
prot
.
ALIGN_BOTTOM
;
prot
[
'
ALIGN_CENTER
'
]
=
prot
.
ALIGN_CENTER
;
prot
[
'
ALIGN_MIDDLE
'
]
=
prot
.
ALIGN_MIDDLE
;
window
[
'
Asc
'
][
'
c_oAscSectionBreakType
'
]
=
c_oAscSectionBreakType
;
prot
=
c_oAscSectionBreakType
;
prot
[
'
NextPage
'
]
=
prot
.
NextPage
;
prot
[
'
OddPage
'
]
=
prot
.
OddPage
;
prot
[
'
EvenPage
'
]
=
prot
.
EvenPage
;
prot
[
'
Continuous
'
]
=
prot
.
Continuous
;
prot
[
'
Column
'
]
=
prot
.
Column
;
window
[
'
Asc
'
][
'
c_oAscMathInterfaceType
'
]
=
c_oAscMathInterfaceType
;
prot
=
c_oAscMathInterfaceType
;
prot
[
'
Common
'
]
=
prot
.
Common
;
prot
[
'
Fraction
'
]
=
prot
.
Fraction
;
prot
[
'
Script
'
]
=
prot
.
Script
;
prot
[
'
Radical
'
]
=
prot
.
Radical
;
prot
[
'
LargeOperator
'
]
=
prot
.
LargeOperator
;
prot
[
'
Delimiter
'
]
=
prot
.
Delimiter
;
prot
[
'
Function
'
]
=
prot
.
Function
;
prot
[
'
Accent
'
]
=
prot
.
Accent
;
prot
[
'
BorderBox
'
]
=
prot
.
BorderBox
;
prot
[
'
Bar
'
]
=
prot
.
Bar
;
prot
[
'
Limit
'
]
=
prot
.
Limit
;
prot
[
'
GroupChar
'
]
=
prot
.
GroupChar
;
prot
[
'
Matrix
'
]
=
prot
.
Matrix
;
prot
[
'
EqArray
'
]
=
prot
.
EqArray
;
prot
[
'
Phantom
'
]
=
prot
.
Phantom
;
window
[
'
Asc
'
][
'
c_oAscMathInterfaceBarPos
'
]
=
c_oAscMathInterfaceBarPos
;
prot
=
c_oAscMathInterfaceBarPos
;
prot
[
'
Top
'
]
=
prot
.
Top
;
prot
[
'
Bottom
'
]
=
prot
.
Bottom
;
window
[
'
Asc
'
][
'
c_oAscMathInterfaceScript
'
]
=
c_oAscMathInterfaceScript
;
prot
=
c_oAscMathInterfaceScript
;
prot
[
'
None
'
]
=
prot
.
None
;
prot
[
'
Sup
'
]
=
prot
.
Sup
;
prot
[
'
Sub
'
]
=
prot
.
Sub
;
prot
[
'
SubSup
'
]
=
prot
.
SubSup
;
prot
[
'
PreSubSup
'
]
=
prot
.
PreSubSup
;
window
[
'
Asc
'
][
'
c_oAscMathInterfaceFraction
'
]
=
c_oAscMathInterfaceFraction
;
prot
=
c_oAscMathInterfaceFraction
;
prot
[
'
None
'
]
=
prot
.
Bar
;
prot
[
'
Skewed
'
]
=
prot
.
Skewed
;
prot
[
'
Linear
'
]
=
prot
.
Linear
;
prot
[
'
NoBar
'
]
=
prot
.
NoBar
;
window
[
'
Asc
'
][
'
c_oAscMathInterfaceLimitPos
'
]
=
c_oAscMathInterfaceLimitPos
;
prot
=
c_oAscMathInterfaceLimitPos
;
prot
[
'
None
'
]
=
prot
.
None
;
prot
[
'
Top
'
]
=
prot
.
Top
;
prot
[
'
Bottom
'
]
=
prot
.
Bottom
;
window
[
'
Asc
'
][
'
c_oAscMathInterfaceMatrixMatrixAlign
'
]
=
c_oAscMathInterfaceMatrixMatrixAlign
;
prot
=
c_oAscMathInterfaceMatrixMatrixAlign
;
prot
[
'
Top
'
]
=
prot
.
Top
;
prot
[
'
Center
'
]
=
prot
.
Center
;
prot
[
'
Bottom
'
]
=
prot
.
Bottom
;
window
[
'
Asc
'
][
'
c_oAscMathInterfaceMatrixColumnAlign
'
]
=
c_oAscMathInterfaceMatrixColumnAlign
;
prot
=
c_oAscMathInterfaceMatrixColumnAlign
;
prot
[
'
Left
'
]
=
prot
.
Left
;
prot
[
'
Center
'
]
=
prot
.
Center
;
prot
[
'
Right
'
]
=
prot
.
Right
;
window
[
'
Asc
'
][
'
c_oAscMathInterfaceEqArrayAlign
'
]
=
c_oAscMathInterfaceEqArrayAlign
;
prot
=
c_oAscMathInterfaceEqArrayAlign
;
prot
[
'
Top
'
]
=
prot
.
Top
;
prot
[
'
Center
'
]
=
prot
.
Center
;
prot
[
'
Bottom
'
]
=
prot
.
Bottom
;
window
[
'
Asc
'
][
'
c_oAscMathInterfaceNaryLimitLocation
'
]
=
c_oAscMathInterfaceNaryLimitLocation
;
prot
=
c_oAscMathInterfaceNaryLimitLocation
;
prot
[
'
UndOvr
'
]
=
prot
.
UndOvr
;
prot
[
'
SubSup
'
]
=
prot
.
SubSup
;
window
[
'
Asc
'
][
'
c_oAscMathInterfaceGroupCharPos
'
]
=
c_oAscMathInterfaceGroupCharPos
;
prot
=
c_oAscMathInterfaceGroupCharPos
;
prot
[
'
None
'
]
=
prot
.
None
;
prot
[
'
Top
'
]
=
prot
.
Top
;
prot
[
'
Bottom
'
]
=
prot
.
Bottom
;
window
[
'
Asc
'
][
'
c_oAscRevisionsChangeType
'
]
=
c_oAscRevisionsChangeType
;
prot
=
c_oAscRevisionsChangeType
;
prot
[
'
Unknown
'
]
=
prot
.
Unknown
;
prot
[
'
TextAdd
'
]
=
prot
.
TextAdd
;
prot
[
'
TextRem
'
]
=
prot
.
TextRem
;
prot
[
'
ParaAdd
'
]
=
prot
.
ParaAdd
;
prot
[
'
ParaRem
'
]
=
prot
.
ParaRem
;
prot
[
'
TextPr
'
]
=
prot
.
TextPr
;
prot
[
'
ParaPr
'
]
=
prot
.
ParaPr
;
window
[
'
AscCommon
'
]
=
window
[
'
AscCommon
'
]
||
{};
window
[
'
AscCommon
'
].
c_oSerFormat
=
c_oSerFormat
;
prot
=
window
[
'
Asc
'
][
'
c_oAscWrapStyle2
'
]
=
c_oAscWrapStyle2
;
prot
[
'
Inline
'
]
=
c_oAscWrapStyle2
.
Inline
;
prot
[
'
Square
'
]
=
c_oAscWrapStyle2
.
Square
;
prot
[
'
Tight
'
]
=
c_oAscWrapStyle2
.
Tight
;
prot
[
'
Through
'
]
=
c_oAscWrapStyle2
.
Through
;
prot
[
'
TopAndBottom
'
]
=
c_oAscWrapStyle2
.
TopAndBottom
;
prot
[
'
Behind
'
]
=
c_oAscWrapStyle2
.
Behind
;
prot
[
'
InFront
'
]
=
c_oAscWrapStyle2
.
InFront
;
prot
=
window
[
'
Asc
'
][
'
c_oAscContextMenuTypes
'
]
=
window
[
'
Asc
'
].
c_oAscContextMenuTypes
=
c_oAscContextMenuTypes
;
prot
[
'
Common
'
]
=
c_oAscContextMenuTypes
.
Common
;
prot
[
'
ChangeHdrFtr
'
]
=
c_oAscContextMenuTypes
.
ChangeHdrFtr
;
prot
=
window
[
'
Asc
'
][
'
c_oAscCollaborativeMarksShowType
'
]
=
c_oAscCollaborativeMarksShowType
;
prot
[
'
None
'
]
=
c_oAscCollaborativeMarksShowType
.
None
;
prot
[
'
All
'
]
=
c_oAscCollaborativeMarksShowType
.
All
;
prot
[
'
LastChanges
'
]
=
c_oAscCollaborativeMarksShowType
.
LastChanges
;
prot
=
window
[
'
Asc
'
][
'
c_oAscAlignH
'
]
=
c_oAscAlignH
;
prot
[
'
Center
'
]
=
c_oAscAlignH
.
Center
;
prot
[
'
Inside
'
]
=
c_oAscAlignH
.
Inside
;
prot
[
'
Left
'
]
=
c_oAscAlignH
.
Left
;
prot
[
'
Outside
'
]
=
c_oAscAlignH
.
Outside
;
prot
[
'
Right
'
]
=
c_oAscAlignH
.
Right
;
prot
=
window
[
'
Asc
'
][
'
c_oAscAlignV
'
]
=
c_oAscAlignV
;
prot
[
'
Bottom
'
]
=
c_oAscAlignV
.
Bottom
;
prot
[
'
Center
'
]
=
c_oAscAlignV
.
Center
;
prot
[
'
Inside
'
]
=
c_oAscAlignV
.
Inside
;
prot
[
'
Outside
'
]
=
c_oAscAlignV
.
Outside
;
prot
[
'
Top
'
]
=
c_oAscAlignV
.
Top
;
prot
=
window
[
'
Asc
'
][
'
c_oAscChangeLevel
'
]
=
c_oAscChangeLevel
;
prot
[
'
BringToFront
'
]
=
c_oAscChangeLevel
.
BringToFront
;
prot
[
'
BringForward
'
]
=
c_oAscChangeLevel
.
BringForward
;
prot
[
'
SendToBack
'
]
=
c_oAscChangeLevel
.
SendToBack
;
prot
[
'
BringBackward
'
]
=
c_oAscChangeLevel
.
BringBackward
;
prot
=
window
[
'
Asc
'
][
'
c_oAscVertAlignJc
'
]
=
c_oAscVertAlignJc
;
prot
[
'
Top
'
]
=
c_oAscVertAlignJc
.
Top
;
prot
[
'
Center
'
]
=
c_oAscVertAlignJc
.
Center
;
prot
[
'
Bottom
'
]
=
c_oAscVertAlignJc
.
Bottom
;
prot
=
window
[
'
Asc
'
][
'
c_oAscTableLayout
'
]
=
c_oAscTableLayout
;
prot
[
'
AutoFit
'
]
=
c_oAscTableLayout
.
AutoFit
;
prot
[
'
Fixed
'
]
=
c_oAscTableLayout
.
Fixed
;
prot
=
window
[
'
Asc
'
][
'
c_oAscAlignShapeType
'
]
=
c_oAscAlignShapeType
;
prot
[
'
ALIGN_LEFT
'
]
=
c_oAscAlignShapeType
.
ALIGN_LEFT
;
prot
[
'
ALIGN_RIGHT
'
]
=
c_oAscAlignShapeType
.
ALIGN_RIGHT
;
prot
[
'
ALIGN_TOP
'
]
=
c_oAscAlignShapeType
.
ALIGN_TOP
;
prot
[
'
ALIGN_BOTTOM
'
]
=
c_oAscAlignShapeType
.
ALIGN_BOTTOM
;
prot
[
'
ALIGN_CENTER
'
]
=
c_oAscAlignShapeType
.
ALIGN_CENTER
;
prot
[
'
ALIGN_MIDDLE
'
]
=
c_oAscAlignShapeType
.
ALIGN_MIDDLE
;
prot
=
window
[
'
Asc
'
][
'
c_oAscSectionBreakType
'
]
=
c_oAscSectionBreakType
;
prot
[
'
NextPage
'
]
=
c_oAscSectionBreakType
.
NextPage
;
prot
[
'
OddPage
'
]
=
c_oAscSectionBreakType
.
OddPage
;
prot
[
'
EvenPage
'
]
=
c_oAscSectionBreakType
.
EvenPage
;
prot
[
'
Continuous
'
]
=
c_oAscSectionBreakType
.
Continuous
;
prot
[
'
Column
'
]
=
c_oAscSectionBreakType
.
Column
;
prot
=
window
[
'
Asc
'
][
'
c_oAscMathInterfaceType
'
]
=
c_oAscMathInterfaceType
;
prot
[
'
Common
'
]
=
c_oAscMathInterfaceType
.
Common
;
prot
[
'
Fraction
'
]
=
c_oAscMathInterfaceType
.
Fraction
;
prot
[
'
Script
'
]
=
c_oAscMathInterfaceType
.
Script
;
prot
[
'
Radical
'
]
=
c_oAscMathInterfaceType
.
Radical
;
prot
[
'
LargeOperator
'
]
=
c_oAscMathInterfaceType
.
LargeOperator
;
prot
[
'
Delimiter
'
]
=
c_oAscMathInterfaceType
.
Delimiter
;
prot
[
'
Function
'
]
=
c_oAscMathInterfaceType
.
Function
;
prot
[
'
Accent
'
]
=
c_oAscMathInterfaceType
.
Accent
;
prot
[
'
BorderBox
'
]
=
c_oAscMathInterfaceType
.
BorderBox
;
prot
[
'
Bar
'
]
=
c_oAscMathInterfaceType
.
Bar
;
prot
[
'
Limit
'
]
=
c_oAscMathInterfaceType
.
Limit
;
prot
[
'
GroupChar
'
]
=
c_oAscMathInterfaceType
.
GroupChar
;
prot
[
'
Matrix
'
]
=
c_oAscMathInterfaceType
.
Matrix
;
prot
[
'
EqArray
'
]
=
c_oAscMathInterfaceType
.
EqArray
;
prot
[
'
Phantom
'
]
=
c_oAscMathInterfaceType
.
Phantom
;
prot
=
window
[
'
Asc
'
][
'
c_oAscMathInterfaceBarPos
'
]
=
c_oAscMathInterfaceBarPos
;
prot
[
'
Top
'
]
=
c_oAscMathInterfaceBarPos
.
Top
;
prot
[
'
Bottom
'
]
=
c_oAscMathInterfaceBarPos
.
Bottom
;
prot
=
window
[
'
Asc
'
][
'
c_oAscMathInterfaceScript
'
]
=
c_oAscMathInterfaceScript
;
prot
[
'
None
'
]
=
c_oAscMathInterfaceScript
.
None
;
prot
[
'
Sup
'
]
=
c_oAscMathInterfaceScript
.
Sup
;
prot
[
'
Sub
'
]
=
c_oAscMathInterfaceScript
.
Sub
;
prot
[
'
SubSup
'
]
=
c_oAscMathInterfaceScript
.
SubSup
;
prot
[
'
PreSubSup
'
]
=
c_oAscMathInterfaceScript
.
PreSubSup
;
prot
=
window
[
'
Asc
'
][
'
c_oAscMathInterfaceFraction
'
]
=
c_oAscMathInterfaceFraction
;
prot
[
'
None
'
]
=
c_oAscMathInterfaceFraction
.
Bar
;
prot
[
'
Skewed
'
]
=
c_oAscMathInterfaceFraction
.
Skewed
;
prot
[
'
Linear
'
]
=
c_oAscMathInterfaceFraction
.
Linear
;
prot
[
'
NoBar
'
]
=
c_oAscMathInterfaceFraction
.
NoBar
;
prot
=
window
[
'
Asc
'
][
'
c_oAscMathInterfaceLimitPos
'
]
=
c_oAscMathInterfaceLimitPos
;
prot
[
'
None
'
]
=
c_oAscMathInterfaceLimitPos
.
None
;
prot
[
'
Top
'
]
=
c_oAscMathInterfaceLimitPos
.
Top
;
prot
[
'
Bottom
'
]
=
c_oAscMathInterfaceLimitPos
.
Bottom
;
prot
=
window
[
'
Asc
'
][
'
c_oAscMathInterfaceMatrixMatrixAlign
'
]
=
c_oAscMathInterfaceMatrixMatrixAlign
;
prot
[
'
Top
'
]
=
c_oAscMathInterfaceMatrixMatrixAlign
.
Top
;
prot
[
'
Center
'
]
=
c_oAscMathInterfaceMatrixMatrixAlign
.
Center
;
prot
[
'
Bottom
'
]
=
c_oAscMathInterfaceMatrixMatrixAlign
.
Bottom
;
prot
=
window
[
'
Asc
'
][
'
c_oAscMathInterfaceMatrixColumnAlign
'
]
=
c_oAscMathInterfaceMatrixColumnAlign
;
prot
[
'
Left
'
]
=
c_oAscMathInterfaceMatrixColumnAlign
.
Left
;
prot
[
'
Center
'
]
=
c_oAscMathInterfaceMatrixColumnAlign
.
Center
;
prot
[
'
Right
'
]
=
c_oAscMathInterfaceMatrixColumnAlign
.
Right
;
prot
=
window
[
'
Asc
'
][
'
c_oAscMathInterfaceEqArrayAlign
'
]
=
c_oAscMathInterfaceEqArrayAlign
;
prot
[
'
Top
'
]
=
c_oAscMathInterfaceEqArrayAlign
.
Top
;
prot
[
'
Center
'
]
=
c_oAscMathInterfaceEqArrayAlign
.
Center
;
prot
[
'
Bottom
'
]
=
c_oAscMathInterfaceEqArrayAlign
.
Bottom
;
prot
=
window
[
'
Asc
'
][
'
c_oAscMathInterfaceNaryLimitLocation
'
]
=
c_oAscMathInterfaceNaryLimitLocation
;
prot
[
'
UndOvr
'
]
=
c_oAscMathInterfaceNaryLimitLocation
.
UndOvr
;
prot
[
'
SubSup
'
]
=
c_oAscMathInterfaceNaryLimitLocation
.
SubSup
;
prot
=
window
[
'
Asc
'
][
'
c_oAscMathInterfaceGroupCharPos
'
]
=
c_oAscMathInterfaceGroupCharPos
;
prot
[
'
None
'
]
=
c_oAscMathInterfaceGroupCharPos
.
None
;
prot
[
'
Top
'
]
=
c_oAscMathInterfaceGroupCharPos
.
Top
;
prot
[
'
Bottom
'
]
=
c_oAscMathInterfaceGroupCharPos
.
Bottom
;
prot
=
window
[
'
Asc
'
][
'
c_oAscRevisionsChangeType
'
]
=
c_oAscRevisionsChangeType
;
prot
[
'
Unknown
'
]
=
c_oAscRevisionsChangeType
.
Unknown
;
prot
[
'
TextAdd
'
]
=
c_oAscRevisionsChangeType
.
TextAdd
;
prot
[
'
TextRem
'
]
=
c_oAscRevisionsChangeType
.
TextRem
;
prot
[
'
ParaAdd
'
]
=
c_oAscRevisionsChangeType
.
ParaAdd
;
prot
[
'
ParaRem
'
]
=
c_oAscRevisionsChangeType
.
ParaRem
;
prot
[
'
TextPr
'
]
=
c_oAscRevisionsChangeType
.
TextPr
;
prot
[
'
ParaPr
'
]
=
c_oAscRevisionsChangeType
.
ParaPr
;
window
[
'
AscCommon
'
]
=
window
[
'
AscCommon
'
]
||
{};
window
[
'
AscCommon
'
].
c_oSerFormat
=
c_oSerFormat
;
window
[
'
AscCommon
'
].
CurFileVersion
=
c_oSerFormat
.
Version
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment