Commit 7b6797ff authored by Ilya Kirillov's avatar Ilya Kirillov

Added numbering format constants to export.

parent 4e3549c8
......@@ -195,6 +195,17 @@ var c_oAscFootnoteRestart = {
EachPage : 0x02 //section_footnote_RestartEachPage
};
var c_oAscNumberingFormat = {
None : 0x0000, // numbering_numfmt_None
Bullet : 0x1001, // numbering_numfmt_Bullet
Decimal : 0x2002, // numbering_numfmt_Decimal
LowerRoman : 0x2003, // numbering_numfmt_LowerRoman
UpperRoman : 0x2004, // numbering_numfmt_UpperRoman
LowerLetter : 0x2005, // numbering_numfmt_LowerLetter
UpperLetter : 0x2006, // numbering_numfmt_UpperLetter
DecimalZero : 0x2007 // numbering_numfmt_DecimalZero
};
window["flat_desine"] = false;
//------------------------------------------------------------export---------------------------------------------------
......@@ -283,6 +294,16 @@ prot['Continuous'] = c_oAscFootnoteRestart.Continuous;
prot['EachSect'] = c_oAscFootnoteRestart.EachSect;
prot['EachPage'] = c_oAscFootnoteRestart.EachPage;
prot = window['Asc']['c_oAscNumberingFormat'] = c_oAscNumberingFormat;
prot['None'] = c_oAscNumberingFormat.None;
prot['Bullet'] = c_oAscNumberingFormat.Bullet;
prot['Decimal'] = c_oAscNumberingFormat.Decimal;
prot['LowerRoman'] = c_oAscNumberingFormat.LowerRoman;
prot['UpperRoman'] = c_oAscNumberingFormat.UpperRoman;
prot['LowerLetter'] = c_oAscNumberingFormat.LowerLetter;
prot['UpperLetter'] = c_oAscNumberingFormat.UpperLetter;
prot['DecimalZero'] = c_oAscNumberingFormat.DecimalZero;
window['AscCommon'] = window['AscCommon'] || {};
window['AscCommon'].c_oSerFormat = c_oSerFormat;
......
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