Commit a3e58ac3 authored by Ilya Kirillov's avatar Ilya Kirillov Committed by Alexander.Trofimov

Билдер: Добавлен класс ApiRun. Добавлены функции для работы с раном в...

Билдер: Добавлен класс ApiRun. Добавлены функции для работы с раном в параграфе. Разработка класса ApiDrawing.
parent 02b5a899
This diff is collapsed.
...@@ -52,6 +52,10 @@ var c_oAscCollaborativeMarksShowType = { ...@@ -52,6 +52,10 @@ var c_oAscCollaborativeMarksShowType = {
LastChanges: 1 LastChanges: 1
}; };
/**
* Типы горизонтального прилегания для автофигур.
* @type {{Center: number, Inside: number, Left: number, Outside: number, Right: number}}
*/
var c_oAscAlignH = { var c_oAscAlignH = {
Center: 0x00, Center: 0x00,
Inside: 0x01, Inside: 0x01,
...@@ -67,6 +71,10 @@ var c_oAscChangeLevel = { ...@@ -67,6 +71,10 @@ var c_oAscChangeLevel = {
BringBackward: 0x03 BringBackward: 0x03
}; };
/**
* Типы вертикального прилегания для автофигур.
* @type {{Bottom: number, Center: number, Inside: number, Outside: number, Top: number}}
*/
var c_oAscAlignV = { var c_oAscAlignV = {
Bottom: 0x00, Bottom: 0x00,
Center: 0x01, Center: 0x01,
......
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