office-viewer 0.1.0 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -1
- package/esm/OpenXML.d.ts +19 -0
- package/esm/OpenXML.js +43 -2
- package/esm/Word.d.ts +132 -15
- package/esm/Word.js +239 -54
- package/esm/openxml/ContentType.js +20 -6
- package/esm/openxml/Settings.d.ts +10 -0
- package/esm/openxml/Settings.js +93 -0
- package/esm/openxml/Style.d.ts +1 -1
- package/esm/openxml/Style.js +12 -12
- package/esm/openxml/Theme.js +30 -6
- package/esm/openxml/Types.d.ts +179 -2472
- package/esm/openxml/drawing/Blip.d.ts +7 -0
- package/esm/openxml/{word/drawing → drawing}/Blip.js +2 -1
- package/{lib/openxml/word → esm/openxml}/drawing/BlipFill.d.ts +1 -1
- package/esm/openxml/{word/drawing → drawing}/BlipFill.js +1 -1
- package/esm/openxml/drawing/CustomGeom.d.ts +9 -0
- package/esm/openxml/drawing/CustomGeom.js +17 -0
- package/esm/openxml/drawing/Drawing.d.ts +37 -0
- package/esm/openxml/drawing/Drawing.js +173 -0
- package/esm/openxml/drawing/Geom.d.ts +11 -0
- package/esm/openxml/drawing/Geom.js +34 -0
- package/esm/openxml/drawing/Path.d.ts +37 -0
- package/esm/openxml/drawing/Pic.d.ts +16 -0
- package/esm/openxml/drawing/Pic.js +26 -0
- package/esm/openxml/drawing/Shape.d.ts +20 -0
- package/esm/openxml/drawing/ShapeProperties.d.ts +22 -0
- package/esm/openxml/drawing/ShapeProperties.js +119 -0
- package/{lib/openxml/word → esm/openxml}/drawing/Transform.d.ts +4 -1
- package/esm/openxml/drawing/Transform.js +63 -0
- package/esm/openxml/drawing/diagram/Diagram.d.ts +7 -0
- package/esm/openxml/drawing/diagram/Diagram.js +24 -0
- package/esm/openxml/drawing/diagram/Sp.d.ts +2 -0
- package/esm/openxml/drawing/diagram/SpTree.d.ts +5 -0
- package/esm/openxml/drawing/presetShape.d.ts +3 -0
- package/esm/openxml/drawing/presetShape.js +38785 -0
- package/esm/openxml/drawing/svg/arcToA.d.ts +13 -0
- package/esm/openxml/drawing/svg/arcToA.js +88 -0
- package/esm/openxml/drawing/svg/formulas.d.ts +29 -0
- package/esm/openxml/drawing/svg/formulas.js +103 -0
- package/esm/openxml/drawing/svg/generateDefines.d.ts +12 -0
- package/esm/openxml/drawing/svg/generateDefines.js +144 -0
- package/esm/openxml/drawing/svg/presetVal.d.ts +43 -0
- package/esm/openxml/drawing/svg/presetVal.js +53 -0
- package/esm/openxml/drawing/svg/shapeToSVG.d.ts +9 -0
- package/esm/openxml/drawing/svg/shapeToSVG.js +151 -0
- package/esm/openxml/math/OMath.d.ts +5 -0
- package/esm/openxml/math/OMath.js +12 -0
- package/esm/openxml/math/convertOOML.d.ts +4 -0
- package/esm/openxml/math/convertOOML.js +13 -0
- package/esm/openxml/math/xsl.d.ts +4 -0
- package/esm/openxml/math/xsl.js +8 -0
- package/esm/openxml/word/Body.js +11 -7
- package/esm/openxml/word/Break.js +1 -3
- package/esm/openxml/word/Font.d.ts +16 -0
- package/esm/openxml/word/Font.js +78 -0
- package/esm/openxml/word/FontTable.d.ts +9 -0
- package/esm/openxml/word/FontTable.js +34 -0
- package/esm/openxml/word/Header.d.ts +11 -0
- package/esm/openxml/word/Header.js +54 -0
- package/esm/openxml/word/Hyperlink.d.ts +1 -0
- package/esm/openxml/word/Hyperlink.js +7 -3
- package/esm/openxml/word/InlineText.js +1 -1
- package/esm/openxml/word/NoBreakHyphen.d.ts +2 -0
- package/esm/openxml/word/NoBreakHyphen.js +7 -0
- package/esm/openxml/word/Note.d.ts +12 -0
- package/esm/openxml/word/Note.js +48 -0
- package/esm/openxml/word/Paragraph.d.ts +2 -2
- package/esm/openxml/word/Paragraph.js +10 -9
- package/esm/openxml/word/Pict.d.ts +1 -2
- package/esm/openxml/word/Pict.js +5 -3
- package/esm/openxml/word/Ruby.js +1 -1
- package/esm/openxml/word/Run.d.ts +7 -3
- package/esm/openxml/word/Run.js +28 -4
- package/esm/openxml/word/Section.d.ts +18 -5
- package/esm/openxml/word/Section.js +46 -2
- package/esm/openxml/word/Separator.d.ts +5 -0
- package/esm/openxml/word/Separator.js +10 -0
- package/esm/openxml/word/SoftHyphen.d.ts +5 -0
- package/esm/openxml/word/SoftHyphen.js +10 -0
- package/esm/openxml/word/Tab.d.ts +1 -1
- package/esm/openxml/word/Table.d.ts +4 -9
- package/esm/openxml/word/Table.js +0 -235
- package/esm/openxml/word/WDocument.d.ts +1 -2
- package/esm/openxml/word/WDocument.js +53 -7
- package/esm/openxml/word/numbering/AbstractNum.js +4 -2
- package/esm/openxml/word/numbering/Lvl.js +10 -4
- package/esm/openxml/word/numbering/Num.js +12 -4
- package/esm/openxml/word/numbering/NumberProperties.js +2 -2
- package/esm/openxml/word/numbering/Numbering.js +1 -1
- package/esm/openxml/word/table/Tc.d.ts +1 -22
- package/esm/openxml/word/table/Tc.js +1 -221
- package/esm/openxml/word/table/Tr.d.ts +0 -5
- package/esm/openxml/word/table/Tr.js +0 -97
- package/esm/openxml/word/wps/WPG.d.ts +14 -0
- package/esm/openxml/word/wps/WPG.js +56 -0
- package/esm/openxml/word/wps/WPS.d.ts +18 -0
- package/esm/openxml/word/wps/WPS.js +148 -0
- package/esm/openxml/word/wps/WPSStyle.d.ts +10 -0
- package/esm/openxml/word/wps/WPSStyle.js +42 -0
- package/esm/package/PackageParser.d.ts +1 -1
- package/esm/package/XMLPackageParser.d.ts +3 -3
- package/esm/package/ZipPackageParser.d.ts +1 -1
- package/esm/package/ZipPackageParser.js +7 -8
- package/esm/parse/Footnotes.d.ts +3 -0
- package/esm/parse/Footnotes.js +25 -0
- package/esm/parse/colorNameMap.d.ts +6 -0
- package/esm/parse/colorNameMap.js +201 -0
- package/esm/parse/jcToTextAlign.js +1 -0
- package/esm/parse/mergeSdt.d.ts +4 -0
- package/esm/parse/mergeSdt.js +57 -0
- package/esm/parse/modifyColor.d.ts +1 -0
- package/esm/parse/modifyColor.js +106 -0
- package/esm/parse/parseBorder.js +2 -21
- package/esm/parse/parseCellMargin.d.ts +2 -0
- package/esm/parse/parseCellMargin.js +38 -0
- package/esm/parse/parseChildColor.d.ts +5 -0
- package/esm/parse/parseChildColor.js +66 -0
- package/esm/parse/parseColor.d.ts +4 -0
- package/esm/parse/parseColor.js +41 -46
- package/esm/parse/parseEndnotes.d.ts +3 -0
- package/esm/parse/parseEndnotes.js +25 -0
- package/esm/parse/parseFont.js +1 -1
- package/esm/parse/parseInsideBorders.d.ts +9 -0
- package/esm/parse/parseInsideBorders.js +24 -0
- package/esm/parse/parsePr.d.ts +3 -0
- package/esm/parse/parsePr.js +108 -11
- package/esm/parse/parseRelationship.js +1 -1
- package/esm/parse/parseSdt.d.ts +5 -0
- package/esm/parse/parseShape.d.ts +10 -0
- package/esm/parse/parseShape.js +239 -0
- package/esm/parse/parseSize.d.ts +2 -1
- package/esm/parse/parseSize.js +7 -1
- package/esm/parse/parseSpacing.js +1 -1
- package/esm/parse/parseTable.d.ts +3 -0
- package/esm/parse/parseTable.js +62 -0
- package/esm/parse/parseTablePr.d.ts +3 -0
- package/esm/parse/parseTablePr.js +185 -0
- package/esm/parse/parseTblWidth.d.ts +4 -0
- package/esm/parse/parseTblWidth.js +23 -0
- package/esm/parse/parseTc.d.ts +10 -0
- package/esm/parse/parseTc.js +64 -0
- package/esm/parse/parseTcPr.d.ts +5 -0
- package/esm/parse/parseTcPr.js +99 -0
- package/esm/parse/parseTextDirection.js +4 -6
- package/esm/parse/parseTr.d.ts +6 -0
- package/esm/parse/parseTr.js +49 -0
- package/esm/parse/parseTrPr.d.ts +3 -0
- package/esm/parse/parseTrPr.js +59 -0
- package/esm/render/fixAbsolutePosition.d.ts +8 -0
- package/esm/render/renderBody.d.ts +6 -2
- package/esm/render/renderBody.js +184 -30
- package/esm/render/renderBr.d.ts +2 -1
- package/esm/render/renderBr.js +4 -1
- package/esm/render/renderCustGeom.d.ts +4 -0
- package/esm/render/renderCustGeom.js +10 -0
- package/esm/render/renderDocument.d.ts +2 -2
- package/esm/render/renderDocument.js +2 -2
- package/esm/render/renderDrawing.d.ts +3 -2
- package/esm/render/renderDrawing.js +238 -21
- package/esm/render/renderFont.d.ts +5 -0
- package/esm/render/renderFont.js +39 -0
- package/esm/render/renderGeom.d.ts +4 -0
- package/esm/render/renderGeom.js +14 -0
- package/esm/render/renderHeader.d.ts +6 -0
- package/esm/render/renderHeader.js +40 -0
- package/esm/render/renderHyperLink.js +4 -1
- package/esm/render/renderInlineText.js +1 -1
- package/esm/render/renderInstrText.js +1 -1
- package/esm/render/renderMath.d.ts +3 -0
- package/esm/render/renderMath.js +7 -0
- package/esm/render/renderNoBreakHyphen.d.ts +1 -0
- package/esm/render/renderNoBreakHyphen.js +9 -0
- package/esm/render/renderNotes.d.ts +5 -0
- package/esm/render/renderNotes.js +77 -0
- package/esm/render/renderNumbering.js +8 -10
- package/esm/render/renderParagraph.d.ts +1 -1
- package/esm/render/renderParagraph.js +58 -18
- package/esm/render/renderPict.js +5 -10
- package/esm/render/renderRuby.js +1 -1
- package/esm/render/renderRun.d.ts +4 -2
- package/esm/render/renderRun.js +42 -12
- package/esm/render/renderSection.d.ts +3 -2
- package/esm/render/renderSection.js +79 -5
- package/esm/render/renderSeparator.d.ts +1 -0
- package/esm/render/renderSeparator.js +9 -0
- package/esm/render/renderSoftHyphen.d.ts +1 -0
- package/esm/render/renderSoftHyphen.js +9 -0
- package/esm/render/renderStyle.js +36 -35
- package/esm/render/renderTab.d.ts +2 -1
- package/esm/render/renderTab.js +10 -6
- package/esm/render/renderTable.js +23 -20
- package/esm/render/setElementStyle.js +7 -2
- package/esm/render/zindex.d.ts +1 -0
- package/esm/util/blob.js +1 -10
- package/esm/util/color.d.ts +48 -0
- package/esm/util/color.js +211 -0
- package/esm/util/createObject.d.ts +10 -0
- package/esm/util/createObject.js +48 -0
- package/esm/util/dom.d.ts +8 -4
- package/esm/util/dom.js +21 -4
- package/esm/util/get.d.ts +4 -0
- package/esm/util/get.js +18 -0
- package/esm/util/mergeRun.js +1 -1
- package/esm/util/parseSides.d.ts +11 -0
- package/esm/util/print.d.ts +5 -0
- package/esm/util/print.js +54 -0
- package/esm/util/replaceVar.d.ts +10 -0
- package/esm/util/replaceVar.js +215 -0
- package/esm/util/xml.js +4 -1
- package/lib/OpenXML.d.ts +19 -0
- package/lib/OpenXML.js +44 -1
- package/lib/Word.d.ts +132 -15
- package/lib/Word.js +244 -59
- package/lib/openxml/ContentType.js +20 -6
- package/lib/openxml/Settings.d.ts +10 -0
- package/lib/openxml/Settings.js +97 -0
- package/lib/openxml/Style.d.ts +1 -1
- package/lib/openxml/Style.js +15 -15
- package/lib/openxml/Theme.js +31 -7
- package/lib/openxml/Types.d.ts +179 -2472
- package/lib/openxml/drawing/Blip.d.ts +7 -0
- package/lib/openxml/{word/drawing → drawing}/Blip.js +2 -1
- package/{esm/openxml/word → lib/openxml}/drawing/BlipFill.d.ts +1 -1
- package/lib/openxml/{word/drawing → drawing}/BlipFill.js +1 -1
- package/lib/openxml/drawing/CustomGeom.d.ts +9 -0
- package/lib/openxml/drawing/CustomGeom.js +21 -0
- package/lib/openxml/drawing/Drawing.d.ts +37 -0
- package/lib/openxml/drawing/Drawing.js +177 -0
- package/lib/openxml/drawing/Geom.d.ts +11 -0
- package/lib/openxml/drawing/Geom.js +38 -0
- package/lib/openxml/drawing/Path.d.ts +37 -0
- package/lib/openxml/drawing/Pic.d.ts +16 -0
- package/lib/openxml/drawing/Pic.js +30 -0
- package/lib/openxml/drawing/Shape.d.ts +20 -0
- package/lib/openxml/drawing/ShapeProperties.d.ts +22 -0
- package/lib/openxml/drawing/ShapeProperties.js +123 -0
- package/{esm/openxml/word → lib/openxml}/drawing/Transform.d.ts +4 -1
- package/lib/openxml/drawing/Transform.js +67 -0
- package/lib/openxml/drawing/diagram/Diagram.d.ts +7 -0
- package/lib/openxml/drawing/diagram/Diagram.js +28 -0
- package/lib/openxml/drawing/diagram/Sp.d.ts +2 -0
- package/lib/openxml/drawing/diagram/SpTree.d.ts +5 -0
- package/lib/openxml/drawing/presetShape.d.ts +3 -0
- package/lib/openxml/drawing/presetShape.js +38789 -0
- package/lib/openxml/drawing/svg/arcToA.d.ts +13 -0
- package/lib/openxml/drawing/svg/arcToA.js +92 -0
- package/lib/openxml/drawing/svg/formulas.d.ts +29 -0
- package/lib/openxml/drawing/svg/formulas.js +108 -0
- package/lib/openxml/drawing/svg/generateDefines.d.ts +12 -0
- package/lib/openxml/drawing/svg/generateDefines.js +148 -0
- package/lib/openxml/drawing/svg/presetVal.d.ts +43 -0
- package/lib/openxml/drawing/svg/presetVal.js +57 -0
- package/lib/openxml/drawing/svg/shapeToSVG.d.ts +9 -0
- package/lib/openxml/drawing/svg/shapeToSVG.js +155 -0
- package/lib/openxml/math/OMath.d.ts +5 -0
- package/lib/openxml/math/OMath.js +16 -0
- package/lib/openxml/math/convertOOML.d.ts +4 -0
- package/lib/openxml/math/convertOOML.js +17 -0
- package/lib/openxml/math/xsl.d.ts +4 -0
- package/lib/openxml/math/xsl.js +12 -0
- package/lib/openxml/word/Body.js +11 -7
- package/lib/openxml/word/Break.js +1 -3
- package/lib/openxml/word/Font.d.ts +16 -0
- package/lib/openxml/word/Font.js +83 -0
- package/lib/openxml/word/FontTable.d.ts +9 -0
- package/lib/openxml/word/FontTable.js +38 -0
- package/lib/openxml/word/Header.d.ts +11 -0
- package/lib/openxml/word/Header.js +58 -0
- package/lib/openxml/word/Hyperlink.d.ts +1 -0
- package/lib/openxml/word/Hyperlink.js +8 -4
- package/lib/openxml/word/InlineText.js +2 -2
- package/lib/openxml/word/NoBreakHyphen.d.ts +2 -0
- package/lib/openxml/word/NoBreakHyphen.js +11 -0
- package/lib/openxml/word/Note.d.ts +12 -0
- package/lib/openxml/word/Note.js +52 -0
- package/lib/openxml/word/Paragraph.d.ts +2 -2
- package/lib/openxml/word/Paragraph.js +11 -10
- package/lib/openxml/word/Pict.d.ts +1 -2
- package/lib/openxml/word/Pict.js +5 -3
- package/lib/openxml/word/Ruby.js +4 -4
- package/lib/openxml/word/Run.d.ts +7 -3
- package/lib/openxml/word/Run.js +29 -5
- package/lib/openxml/word/Section.d.ts +18 -5
- package/lib/openxml/word/Section.js +47 -3
- package/lib/openxml/word/Separator.d.ts +5 -0
- package/lib/openxml/word/Separator.js +14 -0
- package/lib/openxml/word/SoftHyphen.d.ts +5 -0
- package/lib/openxml/word/SoftHyphen.js +14 -0
- package/lib/openxml/word/Tab.d.ts +1 -1
- package/lib/openxml/word/Table.d.ts +4 -9
- package/lib/openxml/word/Table.js +0 -235
- package/lib/openxml/word/WDocument.d.ts +1 -2
- package/lib/openxml/word/WDocument.js +53 -7
- package/lib/openxml/word/numbering/AbstractNum.js +5 -3
- package/lib/openxml/word/numbering/Lvl.js +11 -5
- package/lib/openxml/word/numbering/Num.js +12 -4
- package/lib/openxml/word/numbering/NumberProperties.js +2 -2
- package/lib/openxml/word/numbering/Numbering.js +3 -3
- package/lib/openxml/word/table/Tc.d.ts +1 -22
- package/lib/openxml/word/table/Tc.js +0 -224
- package/lib/openxml/word/table/Tr.d.ts +0 -5
- package/lib/openxml/word/table/Tr.js +0 -97
- package/lib/openxml/word/wps/WPG.d.ts +14 -0
- package/lib/openxml/word/wps/WPG.js +60 -0
- package/lib/openxml/word/wps/WPS.d.ts +18 -0
- package/lib/openxml/word/wps/WPS.js +152 -0
- package/lib/openxml/word/wps/WPSStyle.d.ts +10 -0
- package/lib/openxml/word/wps/WPSStyle.js +46 -0
- package/lib/package/PackageParser.d.ts +1 -1
- package/lib/package/XMLPackageParser.d.ts +3 -3
- package/lib/package/ZipPackageParser.d.ts +1 -1
- package/lib/package/ZipPackageParser.js +7 -8
- package/lib/parse/Footnotes.d.ts +3 -0
- package/lib/parse/Footnotes.js +29 -0
- package/lib/parse/colorNameMap.d.ts +6 -0
- package/lib/parse/colorNameMap.js +205 -0
- package/lib/parse/jcToTextAlign.js +1 -0
- package/lib/parse/mergeSdt.d.ts +4 -0
- package/lib/parse/mergeSdt.js +61 -0
- package/lib/parse/modifyColor.d.ts +1 -0
- package/lib/parse/modifyColor.js +110 -0
- package/lib/parse/parseBorder.js +3 -22
- package/lib/parse/parseCellMargin.d.ts +2 -0
- package/lib/parse/parseCellMargin.js +42 -0
- package/lib/parse/parseChildColor.d.ts +5 -0
- package/lib/parse/parseChildColor.js +70 -0
- package/lib/parse/parseColor.d.ts +4 -0
- package/lib/parse/parseColor.js +41 -45
- package/lib/parse/parseEndnotes.d.ts +3 -0
- package/lib/parse/parseEndnotes.js +29 -0
- package/lib/parse/parseFont.js +2 -2
- package/lib/parse/parseInsideBorders.d.ts +9 -0
- package/lib/parse/parseInsideBorders.js +28 -0
- package/lib/parse/parsePr.d.ts +3 -0
- package/lib/parse/parsePr.js +109 -12
- package/lib/parse/parseRelationship.js +2 -2
- package/lib/parse/parseSdt.d.ts +5 -0
- package/lib/parse/parseShape.d.ts +10 -0
- package/lib/parse/parseShape.js +247 -0
- package/lib/parse/parseSize.d.ts +2 -1
- package/lib/parse/parseSize.js +7 -0
- package/lib/parse/parseSpacing.js +1 -1
- package/lib/parse/parseTable.d.ts +3 -0
- package/lib/parse/parseTable.js +66 -0
- package/lib/parse/parseTablePr.d.ts +3 -0
- package/lib/parse/parseTablePr.js +189 -0
- package/lib/parse/parseTblWidth.d.ts +4 -0
- package/lib/parse/parseTblWidth.js +27 -0
- package/lib/parse/parseTc.d.ts +10 -0
- package/lib/parse/parseTc.js +68 -0
- package/lib/parse/parseTcPr.d.ts +5 -0
- package/lib/parse/parseTcPr.js +104 -0
- package/lib/parse/parseTextDirection.js +4 -6
- package/lib/parse/parseTr.d.ts +6 -0
- package/lib/parse/parseTr.js +53 -0
- package/lib/parse/parseTrPr.d.ts +3 -0
- package/lib/parse/parseTrPr.js +63 -0
- package/lib/render/fixAbsolutePosition.d.ts +8 -0
- package/lib/render/renderBody.d.ts +6 -2
- package/lib/render/renderBody.js +183 -29
- package/lib/render/renderBr.d.ts +2 -1
- package/lib/render/renderBr.js +4 -1
- package/lib/render/renderCustGeom.d.ts +4 -0
- package/lib/render/renderCustGeom.js +14 -0
- package/lib/render/renderDocument.d.ts +2 -2
- package/lib/render/renderDocument.js +2 -2
- package/lib/render/renderDrawing.d.ts +3 -2
- package/lib/render/renderDrawing.js +238 -21
- package/lib/render/renderFont.d.ts +5 -0
- package/lib/render/renderFont.js +43 -0
- package/lib/render/renderGeom.d.ts +4 -0
- package/lib/render/renderGeom.js +18 -0
- package/lib/render/renderHeader.d.ts +6 -0
- package/lib/render/renderHeader.js +44 -0
- package/lib/render/renderHyperLink.js +5 -2
- package/lib/render/renderInlineText.js +2 -2
- package/lib/render/renderInstrText.js +2 -2
- package/lib/render/renderMath.d.ts +3 -0
- package/lib/render/renderMath.js +11 -0
- package/lib/render/renderNoBreakHyphen.d.ts +1 -0
- package/lib/render/renderNoBreakHyphen.js +13 -0
- package/lib/render/renderNotes.d.ts +5 -0
- package/lib/render/renderNotes.js +81 -0
- package/lib/render/renderNumbering.js +9 -11
- package/lib/render/renderParagraph.d.ts +1 -1
- package/lib/render/renderParagraph.js +58 -18
- package/lib/render/renderPict.js +5 -10
- package/lib/render/renderRuby.js +3 -3
- package/lib/render/renderRun.d.ts +4 -2
- package/lib/render/renderRun.js +41 -11
- package/lib/render/renderSection.d.ts +3 -2
- package/lib/render/renderSection.js +79 -5
- package/lib/render/renderSeparator.d.ts +1 -0
- package/lib/render/renderSeparator.js +13 -0
- package/lib/render/renderSoftHyphen.d.ts +1 -0
- package/lib/render/renderSoftHyphen.js +13 -0
- package/lib/render/renderStyle.js +37 -36
- package/lib/render/renderTab.d.ts +2 -1
- package/lib/render/renderTab.js +10 -6
- package/lib/render/renderTable.js +25 -22
- package/lib/render/setElementStyle.js +6 -1
- package/lib/render/zindex.d.ts +1 -0
- package/lib/util/blob.js +0 -10
- package/lib/util/color.d.ts +48 -0
- package/lib/util/color.js +215 -0
- package/lib/util/createObject.d.ts +10 -0
- package/lib/util/createObject.js +54 -0
- package/lib/util/dom.d.ts +8 -4
- package/lib/util/dom.js +24 -5
- package/lib/util/get.d.ts +4 -0
- package/lib/util/get.js +22 -0
- package/lib/util/mergeRun.js +5 -5
- package/lib/util/parseSides.d.ts +11 -0
- package/lib/util/print.d.ts +5 -0
- package/lib/util/print.js +58 -0
- package/lib/util/replaceVar.d.ts +10 -0
- package/lib/util/replaceVar.js +220 -0
- package/lib/util/xml.js +4 -0
- package/package.json +17 -7
- package/esm/node_modules/tslib/tslib.es6.js +0 -120
- package/esm/openxml/Types.js +0 -1003
- package/esm/openxml/word/CustomXml.d.ts +0 -8
- package/esm/openxml/word/SmartTag.d.ts +0 -8
- package/esm/openxml/word/SmartTag.js +0 -18
- package/esm/openxml/word/drawing/Blip.d.ts +0 -6
- package/esm/openxml/word/drawing/Drawing.d.ts +0 -6
- package/esm/openxml/word/drawing/Drawing.js +0 -15
- package/esm/openxml/word/drawing/Pic.d.ts +0 -8
- package/esm/openxml/word/drawing/Pic.js +0 -16
- package/esm/openxml/word/drawing/ShapeProperties.d.ts +0 -9
- package/esm/openxml/word/drawing/ShapeProperties.js +0 -20
- package/esm/openxml/word/drawing/Transform.js +0 -30
- package/lib/node_modules/tslib/tslib.es6.js +0 -129
- package/lib/openxml/Types.js +0 -1005
- package/lib/openxml/word/CustomXml.d.ts +0 -8
- package/lib/openxml/word/SmartTag.d.ts +0 -8
- package/lib/openxml/word/SmartTag.js +0 -22
- package/lib/openxml/word/drawing/Blip.d.ts +0 -6
- package/lib/openxml/word/drawing/Drawing.d.ts +0 -6
- package/lib/openxml/word/drawing/Drawing.js +0 -19
- package/lib/openxml/word/drawing/Pic.d.ts +0 -8
- package/lib/openxml/word/drawing/Pic.js +0 -20
- package/lib/openxml/word/drawing/ShapeProperties.d.ts +0 -9
- package/lib/openxml/word/drawing/ShapeProperties.js +0 -24
- package/lib/openxml/word/drawing/Transform.js +0 -34
package/esm/openxml/Types.js
DELETED
|
@@ -1,1003 +0,0 @@
|
|
|
1
|
-
var ST_CalendarType;
|
|
2
|
-
(function (ST_CalendarType) {
|
|
3
|
-
ST_CalendarType["gregorian"] = "gregorian";
|
|
4
|
-
ST_CalendarType["gregorianUs"] = "gregorianUs";
|
|
5
|
-
ST_CalendarType["gregorianMeFrench"] = "gregorianMeFrench";
|
|
6
|
-
ST_CalendarType["gregorianArabic"] = "gregorianArabic";
|
|
7
|
-
ST_CalendarType["hijri"] = "hijri";
|
|
8
|
-
ST_CalendarType["hebrew"] = "hebrew";
|
|
9
|
-
ST_CalendarType["taiwan"] = "taiwan";
|
|
10
|
-
ST_CalendarType["japan"] = "japan";
|
|
11
|
-
ST_CalendarType["thai"] = "thai";
|
|
12
|
-
ST_CalendarType["korea"] = "korea";
|
|
13
|
-
ST_CalendarType["saka"] = "saka";
|
|
14
|
-
ST_CalendarType["gregorianXlitEnglish"] = "gregorianXlitEnglish";
|
|
15
|
-
ST_CalendarType["gregorianXlitFrench"] = "gregorianXlitFrench";
|
|
16
|
-
ST_CalendarType["none"] = "none";
|
|
17
|
-
})(ST_CalendarType || (ST_CalendarType = {}));
|
|
18
|
-
var ST_VerticalAlignRun;
|
|
19
|
-
(function (ST_VerticalAlignRun) {
|
|
20
|
-
ST_VerticalAlignRun["baseline"] = "baseline";
|
|
21
|
-
ST_VerticalAlignRun["superscript"] = "superscript";
|
|
22
|
-
ST_VerticalAlignRun["subscript"] = "subscript";
|
|
23
|
-
})(ST_VerticalAlignRun || (ST_VerticalAlignRun = {}));
|
|
24
|
-
var ST_XAlign;
|
|
25
|
-
(function (ST_XAlign) {
|
|
26
|
-
ST_XAlign["left"] = "left";
|
|
27
|
-
ST_XAlign["center"] = "center";
|
|
28
|
-
ST_XAlign["right"] = "right";
|
|
29
|
-
ST_XAlign["inside"] = "inside";
|
|
30
|
-
ST_XAlign["outside"] = "outside";
|
|
31
|
-
})(ST_XAlign || (ST_XAlign = {}));
|
|
32
|
-
var ST_YAlign;
|
|
33
|
-
(function (ST_YAlign) {
|
|
34
|
-
ST_YAlign["inline"] = "inline";
|
|
35
|
-
ST_YAlign["top"] = "top";
|
|
36
|
-
ST_YAlign["center"] = "center";
|
|
37
|
-
ST_YAlign["bottom"] = "bottom";
|
|
38
|
-
ST_YAlign["inside"] = "inside";
|
|
39
|
-
ST_YAlign["outside"] = "outside";
|
|
40
|
-
})(ST_YAlign || (ST_YAlign = {}));
|
|
41
|
-
var ST_ConformanceClass;
|
|
42
|
-
(function (ST_ConformanceClass) {
|
|
43
|
-
ST_ConformanceClass["strict"] = "strict";
|
|
44
|
-
ST_ConformanceClass["transitional"] = "transitional";
|
|
45
|
-
})(ST_ConformanceClass || (ST_ConformanceClass = {}));
|
|
46
|
-
var ST_HighlightColor;
|
|
47
|
-
(function (ST_HighlightColor) {
|
|
48
|
-
ST_HighlightColor["black"] = "black";
|
|
49
|
-
ST_HighlightColor["blue"] = "blue";
|
|
50
|
-
ST_HighlightColor["cyan"] = "cyan";
|
|
51
|
-
ST_HighlightColor["green"] = "green";
|
|
52
|
-
ST_HighlightColor["magenta"] = "magenta";
|
|
53
|
-
ST_HighlightColor["red"] = "red";
|
|
54
|
-
ST_HighlightColor["yellow"] = "yellow";
|
|
55
|
-
ST_HighlightColor["white"] = "white";
|
|
56
|
-
ST_HighlightColor["darkBlue"] = "darkBlue";
|
|
57
|
-
ST_HighlightColor["darkCyan"] = "darkCyan";
|
|
58
|
-
ST_HighlightColor["darkGreen"] = "darkGreen";
|
|
59
|
-
ST_HighlightColor["darkMagenta"] = "darkMagenta";
|
|
60
|
-
ST_HighlightColor["darkRed"] = "darkRed";
|
|
61
|
-
ST_HighlightColor["darkYellow"] = "darkYellow";
|
|
62
|
-
ST_HighlightColor["darkGray"] = "darkGray";
|
|
63
|
-
ST_HighlightColor["lightGray"] = "lightGray";
|
|
64
|
-
ST_HighlightColor["none"] = "none";
|
|
65
|
-
})(ST_HighlightColor || (ST_HighlightColor = {}));
|
|
66
|
-
var ST_HexColorAuto;
|
|
67
|
-
(function (ST_HexColorAuto) {
|
|
68
|
-
ST_HexColorAuto["auto"] = "auto";
|
|
69
|
-
})(ST_HexColorAuto || (ST_HexColorAuto = {}));
|
|
70
|
-
var ST_Underline;
|
|
71
|
-
(function (ST_Underline) {
|
|
72
|
-
ST_Underline["single"] = "single";
|
|
73
|
-
ST_Underline["words"] = "words";
|
|
74
|
-
ST_Underline["double"] = "double";
|
|
75
|
-
ST_Underline["thick"] = "thick";
|
|
76
|
-
ST_Underline["dotted"] = "dotted";
|
|
77
|
-
ST_Underline["dottedHeavy"] = "dottedHeavy";
|
|
78
|
-
ST_Underline["dash"] = "dash";
|
|
79
|
-
ST_Underline["dashedHeavy"] = "dashedHeavy";
|
|
80
|
-
ST_Underline["dashLong"] = "dashLong";
|
|
81
|
-
ST_Underline["dashLongHeavy"] = "dashLongHeavy";
|
|
82
|
-
ST_Underline["dotDash"] = "dotDash";
|
|
83
|
-
ST_Underline["dashDotHeavy"] = "dashDotHeavy";
|
|
84
|
-
ST_Underline["dotDotDash"] = "dotDotDash";
|
|
85
|
-
ST_Underline["dashDotDotHeavy"] = "dashDotDotHeavy";
|
|
86
|
-
ST_Underline["wave"] = "wave";
|
|
87
|
-
ST_Underline["wavyHeavy"] = "wavyHeavy";
|
|
88
|
-
ST_Underline["wavyDouble"] = "wavyDouble";
|
|
89
|
-
ST_Underline["none"] = "none";
|
|
90
|
-
})(ST_Underline || (ST_Underline = {}));
|
|
91
|
-
var ST_TextEffect;
|
|
92
|
-
(function (ST_TextEffect) {
|
|
93
|
-
ST_TextEffect["blinkBackground"] = "blinkBackground";
|
|
94
|
-
ST_TextEffect["lights"] = "lights";
|
|
95
|
-
ST_TextEffect["antsBlack"] = "antsBlack";
|
|
96
|
-
ST_TextEffect["antsRed"] = "antsRed";
|
|
97
|
-
ST_TextEffect["shimmer"] = "shimmer";
|
|
98
|
-
ST_TextEffect["sparkle"] = "sparkle";
|
|
99
|
-
ST_TextEffect["none"] = "none";
|
|
100
|
-
})(ST_TextEffect || (ST_TextEffect = {}));
|
|
101
|
-
var ST_Border;
|
|
102
|
-
(function (ST_Border) {
|
|
103
|
-
ST_Border["nil"] = "nil";
|
|
104
|
-
ST_Border["none"] = "none";
|
|
105
|
-
ST_Border["single"] = "single";
|
|
106
|
-
ST_Border["thick"] = "thick";
|
|
107
|
-
ST_Border["double"] = "double";
|
|
108
|
-
ST_Border["dotted"] = "dotted";
|
|
109
|
-
ST_Border["dashed"] = "dashed";
|
|
110
|
-
ST_Border["dotDash"] = "dotDash";
|
|
111
|
-
ST_Border["dotDotDash"] = "dotDotDash";
|
|
112
|
-
ST_Border["triple"] = "triple";
|
|
113
|
-
ST_Border["thinThickSmallGap"] = "thinThickSmallGap";
|
|
114
|
-
ST_Border["thickThinSmallGap"] = "thickThinSmallGap";
|
|
115
|
-
ST_Border["thinThickThinSmallGap"] = "thinThickThinSmallGap";
|
|
116
|
-
ST_Border["thinThickMediumGap"] = "thinThickMediumGap";
|
|
117
|
-
ST_Border["thickThinMediumGap"] = "thickThinMediumGap";
|
|
118
|
-
ST_Border["thinThickThinMediumGap"] = "thinThickThinMediumGap";
|
|
119
|
-
ST_Border["thinThickLargeGap"] = "thinThickLargeGap";
|
|
120
|
-
ST_Border["thickThinLargeGap"] = "thickThinLargeGap";
|
|
121
|
-
ST_Border["thinThickThinLargeGap"] = "thinThickThinLargeGap";
|
|
122
|
-
ST_Border["wave"] = "wave";
|
|
123
|
-
ST_Border["doubleWave"] = "doubleWave";
|
|
124
|
-
ST_Border["dashSmallGap"] = "dashSmallGap";
|
|
125
|
-
ST_Border["dashDotStroked"] = "dashDotStroked";
|
|
126
|
-
ST_Border["threeDEmboss"] = "threeDEmboss";
|
|
127
|
-
ST_Border["threeDEngrave"] = "threeDEngrave";
|
|
128
|
-
ST_Border["outset"] = "outset";
|
|
129
|
-
ST_Border["inset"] = "inset";
|
|
130
|
-
ST_Border["apples"] = "apples";
|
|
131
|
-
ST_Border["archedScallops"] = "archedScallops";
|
|
132
|
-
ST_Border["babyPacifier"] = "babyPacifier";
|
|
133
|
-
ST_Border["babyRattle"] = "babyRattle";
|
|
134
|
-
ST_Border["balloons3Colors"] = "balloons3Colors";
|
|
135
|
-
ST_Border["balloonsHotAir"] = "balloonsHotAir";
|
|
136
|
-
ST_Border["basicBlackDashes"] = "basicBlackDashes";
|
|
137
|
-
ST_Border["basicBlackDots"] = "basicBlackDots";
|
|
138
|
-
ST_Border["basicBlackSquares"] = "basicBlackSquares";
|
|
139
|
-
ST_Border["basicThinLines"] = "basicThinLines";
|
|
140
|
-
ST_Border["basicWhiteDashes"] = "basicWhiteDashes";
|
|
141
|
-
ST_Border["basicWhiteDots"] = "basicWhiteDots";
|
|
142
|
-
ST_Border["basicWhiteSquares"] = "basicWhiteSquares";
|
|
143
|
-
ST_Border["basicWideInline"] = "basicWideInline";
|
|
144
|
-
ST_Border["basicWideMidline"] = "basicWideMidline";
|
|
145
|
-
ST_Border["basicWideOutline"] = "basicWideOutline";
|
|
146
|
-
ST_Border["bats"] = "bats";
|
|
147
|
-
ST_Border["birds"] = "birds";
|
|
148
|
-
ST_Border["birdsFlight"] = "birdsFlight";
|
|
149
|
-
ST_Border["cabins"] = "cabins";
|
|
150
|
-
ST_Border["cakeSlice"] = "cakeSlice";
|
|
151
|
-
ST_Border["candyCorn"] = "candyCorn";
|
|
152
|
-
ST_Border["celticKnotwork"] = "celticKnotwork";
|
|
153
|
-
ST_Border["certificateBanner"] = "certificateBanner";
|
|
154
|
-
ST_Border["chainLink"] = "chainLink";
|
|
155
|
-
ST_Border["champagneBottle"] = "champagneBottle";
|
|
156
|
-
ST_Border["checkedBarBlack"] = "checkedBarBlack";
|
|
157
|
-
ST_Border["checkedBarColor"] = "checkedBarColor";
|
|
158
|
-
ST_Border["checkered"] = "checkered";
|
|
159
|
-
ST_Border["christmasTree"] = "christmasTree";
|
|
160
|
-
ST_Border["circlesLines"] = "circlesLines";
|
|
161
|
-
ST_Border["circlesRectangles"] = "circlesRectangles";
|
|
162
|
-
ST_Border["classicalWave"] = "classicalWave";
|
|
163
|
-
ST_Border["clocks"] = "clocks";
|
|
164
|
-
ST_Border["compass"] = "compass";
|
|
165
|
-
ST_Border["confetti"] = "confetti";
|
|
166
|
-
ST_Border["confettiGrays"] = "confettiGrays";
|
|
167
|
-
ST_Border["confettiOutline"] = "confettiOutline";
|
|
168
|
-
ST_Border["confettiStreamers"] = "confettiStreamers";
|
|
169
|
-
ST_Border["confettiWhite"] = "confettiWhite";
|
|
170
|
-
ST_Border["cornerTriangles"] = "cornerTriangles";
|
|
171
|
-
ST_Border["couponCutoutDashes"] = "couponCutoutDashes";
|
|
172
|
-
ST_Border["couponCutoutDots"] = "couponCutoutDots";
|
|
173
|
-
ST_Border["crazyMaze"] = "crazyMaze";
|
|
174
|
-
ST_Border["creaturesButterfly"] = "creaturesButterfly";
|
|
175
|
-
ST_Border["creaturesFish"] = "creaturesFish";
|
|
176
|
-
ST_Border["creaturesInsects"] = "creaturesInsects";
|
|
177
|
-
ST_Border["creaturesLadyBug"] = "creaturesLadyBug";
|
|
178
|
-
ST_Border["crossStitch"] = "crossStitch";
|
|
179
|
-
ST_Border["cup"] = "cup";
|
|
180
|
-
ST_Border["decoArch"] = "decoArch";
|
|
181
|
-
ST_Border["decoArchColor"] = "decoArchColor";
|
|
182
|
-
ST_Border["decoBlocks"] = "decoBlocks";
|
|
183
|
-
ST_Border["diamondsGray"] = "diamondsGray";
|
|
184
|
-
ST_Border["doubleD"] = "doubleD";
|
|
185
|
-
ST_Border["doubleDiamonds"] = "doubleDiamonds";
|
|
186
|
-
ST_Border["earth1"] = "earth1";
|
|
187
|
-
ST_Border["earth2"] = "earth2";
|
|
188
|
-
ST_Border["earth3"] = "earth3";
|
|
189
|
-
ST_Border["eclipsingSquares1"] = "eclipsingSquares1";
|
|
190
|
-
ST_Border["eclipsingSquares2"] = "eclipsingSquares2";
|
|
191
|
-
ST_Border["eggsBlack"] = "eggsBlack";
|
|
192
|
-
ST_Border["fans"] = "fans";
|
|
193
|
-
ST_Border["film"] = "film";
|
|
194
|
-
ST_Border["firecrackers"] = "firecrackers";
|
|
195
|
-
ST_Border["flowersBlockPrint"] = "flowersBlockPrint";
|
|
196
|
-
ST_Border["flowersDaisies"] = "flowersDaisies";
|
|
197
|
-
ST_Border["flowersModern1"] = "flowersModern1";
|
|
198
|
-
ST_Border["flowersModern2"] = "flowersModern2";
|
|
199
|
-
ST_Border["flowersPansy"] = "flowersPansy";
|
|
200
|
-
ST_Border["flowersRedRose"] = "flowersRedRose";
|
|
201
|
-
ST_Border["flowersRoses"] = "flowersRoses";
|
|
202
|
-
ST_Border["flowersTeacup"] = "flowersTeacup";
|
|
203
|
-
ST_Border["flowersTiny"] = "flowersTiny";
|
|
204
|
-
ST_Border["gems"] = "gems";
|
|
205
|
-
ST_Border["gingerbreadMan"] = "gingerbreadMan";
|
|
206
|
-
ST_Border["gradient"] = "gradient";
|
|
207
|
-
ST_Border["handmade1"] = "handmade1";
|
|
208
|
-
ST_Border["handmade2"] = "handmade2";
|
|
209
|
-
ST_Border["heartBalloon"] = "heartBalloon";
|
|
210
|
-
ST_Border["heartGray"] = "heartGray";
|
|
211
|
-
ST_Border["hearts"] = "hearts";
|
|
212
|
-
ST_Border["heebieJeebies"] = "heebieJeebies";
|
|
213
|
-
ST_Border["holly"] = "holly";
|
|
214
|
-
ST_Border["houseFunky"] = "houseFunky";
|
|
215
|
-
ST_Border["hypnotic"] = "hypnotic";
|
|
216
|
-
ST_Border["iceCreamCones"] = "iceCreamCones";
|
|
217
|
-
ST_Border["lightBulb"] = "lightBulb";
|
|
218
|
-
ST_Border["lightning1"] = "lightning1";
|
|
219
|
-
ST_Border["lightning2"] = "lightning2";
|
|
220
|
-
ST_Border["mapPins"] = "mapPins";
|
|
221
|
-
ST_Border["mapleLeaf"] = "mapleLeaf";
|
|
222
|
-
ST_Border["mapleMuffins"] = "mapleMuffins";
|
|
223
|
-
ST_Border["marquee"] = "marquee";
|
|
224
|
-
ST_Border["marqueeToothed"] = "marqueeToothed";
|
|
225
|
-
ST_Border["moons"] = "moons";
|
|
226
|
-
ST_Border["mosaic"] = "mosaic";
|
|
227
|
-
ST_Border["musicNotes"] = "musicNotes";
|
|
228
|
-
ST_Border["northwest"] = "northwest";
|
|
229
|
-
ST_Border["ovals"] = "ovals";
|
|
230
|
-
ST_Border["packages"] = "packages";
|
|
231
|
-
ST_Border["palmsBlack"] = "palmsBlack";
|
|
232
|
-
ST_Border["palmsColor"] = "palmsColor";
|
|
233
|
-
ST_Border["paperClips"] = "paperClips";
|
|
234
|
-
ST_Border["papyrus"] = "papyrus";
|
|
235
|
-
ST_Border["partyFavor"] = "partyFavor";
|
|
236
|
-
ST_Border["partyGlass"] = "partyGlass";
|
|
237
|
-
ST_Border["pencils"] = "pencils";
|
|
238
|
-
ST_Border["people"] = "people";
|
|
239
|
-
ST_Border["peopleWaving"] = "peopleWaving";
|
|
240
|
-
ST_Border["peopleHats"] = "peopleHats";
|
|
241
|
-
ST_Border["poinsettias"] = "poinsettias";
|
|
242
|
-
ST_Border["postageStamp"] = "postageStamp";
|
|
243
|
-
ST_Border["pumpkin1"] = "pumpkin1";
|
|
244
|
-
ST_Border["pushPinNote2"] = "pushPinNote2";
|
|
245
|
-
ST_Border["pushPinNote1"] = "pushPinNote1";
|
|
246
|
-
ST_Border["pyramids"] = "pyramids";
|
|
247
|
-
ST_Border["pyramidsAbove"] = "pyramidsAbove";
|
|
248
|
-
ST_Border["quadrants"] = "quadrants";
|
|
249
|
-
ST_Border["rings"] = "rings";
|
|
250
|
-
ST_Border["safari"] = "safari";
|
|
251
|
-
ST_Border["sawtooth"] = "sawtooth";
|
|
252
|
-
ST_Border["sawtoothGray"] = "sawtoothGray";
|
|
253
|
-
ST_Border["scaredCat"] = "scaredCat";
|
|
254
|
-
ST_Border["seattle"] = "seattle";
|
|
255
|
-
ST_Border["shadowedSquares"] = "shadowedSquares";
|
|
256
|
-
ST_Border["sharksTeeth"] = "sharksTeeth";
|
|
257
|
-
ST_Border["shorebirdTracks"] = "shorebirdTracks";
|
|
258
|
-
ST_Border["skyrocket"] = "skyrocket";
|
|
259
|
-
ST_Border["snowflakeFancy"] = "snowflakeFancy";
|
|
260
|
-
ST_Border["snowflakes"] = "snowflakes";
|
|
261
|
-
ST_Border["sombrero"] = "sombrero";
|
|
262
|
-
ST_Border["southwest"] = "southwest";
|
|
263
|
-
ST_Border["stars"] = "stars";
|
|
264
|
-
ST_Border["starsTop"] = "starsTop";
|
|
265
|
-
ST_Border["stars3d"] = "stars3d";
|
|
266
|
-
ST_Border["starsBlack"] = "starsBlack";
|
|
267
|
-
ST_Border["starsShadowed"] = "starsShadowed";
|
|
268
|
-
ST_Border["sun"] = "sun";
|
|
269
|
-
ST_Border["swirligig"] = "swirligig";
|
|
270
|
-
ST_Border["tornPaper"] = "tornPaper";
|
|
271
|
-
ST_Border["tornPaperBlack"] = "tornPaperBlack";
|
|
272
|
-
ST_Border["trees"] = "trees";
|
|
273
|
-
ST_Border["triangleParty"] = "triangleParty";
|
|
274
|
-
ST_Border["triangles"] = "triangles";
|
|
275
|
-
ST_Border["triangle1"] = "triangle1";
|
|
276
|
-
ST_Border["triangle2"] = "triangle2";
|
|
277
|
-
ST_Border["triangleCircle1"] = "triangleCircle1";
|
|
278
|
-
ST_Border["triangleCircle2"] = "triangleCircle2";
|
|
279
|
-
ST_Border["shapes1"] = "shapes1";
|
|
280
|
-
ST_Border["shapes2"] = "shapes2";
|
|
281
|
-
ST_Border["twistedLines1"] = "twistedLines1";
|
|
282
|
-
ST_Border["twistedLines2"] = "twistedLines2";
|
|
283
|
-
ST_Border["vine"] = "vine";
|
|
284
|
-
ST_Border["waveline"] = "waveline";
|
|
285
|
-
ST_Border["weavingAngles"] = "weavingAngles";
|
|
286
|
-
ST_Border["weavingBraid"] = "weavingBraid";
|
|
287
|
-
ST_Border["weavingRibbon"] = "weavingRibbon";
|
|
288
|
-
ST_Border["weavingStrips"] = "weavingStrips";
|
|
289
|
-
ST_Border["whiteFlowers"] = "whiteFlowers";
|
|
290
|
-
ST_Border["woodwork"] = "woodwork";
|
|
291
|
-
ST_Border["xIllusions"] = "xIllusions";
|
|
292
|
-
ST_Border["zanyTriangles"] = "zanyTriangles";
|
|
293
|
-
ST_Border["zigZag"] = "zigZag";
|
|
294
|
-
ST_Border["zigZagStitch"] = "zigZagStitch";
|
|
295
|
-
ST_Border["custom"] = "custom";
|
|
296
|
-
})(ST_Border || (ST_Border = {}));
|
|
297
|
-
var ST_Shd;
|
|
298
|
-
(function (ST_Shd) {
|
|
299
|
-
ST_Shd["nil"] = "nil";
|
|
300
|
-
ST_Shd["clear"] = "clear";
|
|
301
|
-
ST_Shd["solid"] = "solid";
|
|
302
|
-
ST_Shd["horzStripe"] = "horzStripe";
|
|
303
|
-
ST_Shd["vertStripe"] = "vertStripe";
|
|
304
|
-
ST_Shd["reverseDiagStripe"] = "reverseDiagStripe";
|
|
305
|
-
ST_Shd["diagStripe"] = "diagStripe";
|
|
306
|
-
ST_Shd["horzCross"] = "horzCross";
|
|
307
|
-
ST_Shd["diagCross"] = "diagCross";
|
|
308
|
-
ST_Shd["thinHorzStripe"] = "thinHorzStripe";
|
|
309
|
-
ST_Shd["thinVertStripe"] = "thinVertStripe";
|
|
310
|
-
ST_Shd["thinReverseDiagStripe"] = "thinReverseDiagStripe";
|
|
311
|
-
ST_Shd["thinDiagStripe"] = "thinDiagStripe";
|
|
312
|
-
ST_Shd["thinHorzCross"] = "thinHorzCross";
|
|
313
|
-
ST_Shd["thinDiagCross"] = "thinDiagCross";
|
|
314
|
-
ST_Shd["pct5"] = "pct5";
|
|
315
|
-
ST_Shd["pct10"] = "pct10";
|
|
316
|
-
ST_Shd["pct12"] = "pct12";
|
|
317
|
-
ST_Shd["pct15"] = "pct15";
|
|
318
|
-
ST_Shd["pct20"] = "pct20";
|
|
319
|
-
ST_Shd["pct25"] = "pct25";
|
|
320
|
-
ST_Shd["pct30"] = "pct30";
|
|
321
|
-
ST_Shd["pct35"] = "pct35";
|
|
322
|
-
ST_Shd["pct37"] = "pct37";
|
|
323
|
-
ST_Shd["pct40"] = "pct40";
|
|
324
|
-
ST_Shd["pct45"] = "pct45";
|
|
325
|
-
ST_Shd["pct50"] = "pct50";
|
|
326
|
-
ST_Shd["pct55"] = "pct55";
|
|
327
|
-
ST_Shd["pct60"] = "pct60";
|
|
328
|
-
ST_Shd["pct62"] = "pct62";
|
|
329
|
-
ST_Shd["pct65"] = "pct65";
|
|
330
|
-
ST_Shd["pct70"] = "pct70";
|
|
331
|
-
ST_Shd["pct75"] = "pct75";
|
|
332
|
-
ST_Shd["pct80"] = "pct80";
|
|
333
|
-
ST_Shd["pct85"] = "pct85";
|
|
334
|
-
ST_Shd["pct87"] = "pct87";
|
|
335
|
-
ST_Shd["pct90"] = "pct90";
|
|
336
|
-
ST_Shd["pct95"] = "pct95";
|
|
337
|
-
})(ST_Shd || (ST_Shd = {}));
|
|
338
|
-
var ST_Em;
|
|
339
|
-
(function (ST_Em) {
|
|
340
|
-
ST_Em["none"] = "none";
|
|
341
|
-
ST_Em["dot"] = "dot";
|
|
342
|
-
ST_Em["comma"] = "comma";
|
|
343
|
-
ST_Em["circle"] = "circle";
|
|
344
|
-
ST_Em["underDot"] = "underDot";
|
|
345
|
-
})(ST_Em || (ST_Em = {}));
|
|
346
|
-
var ST_CombineBrackets;
|
|
347
|
-
(function (ST_CombineBrackets) {
|
|
348
|
-
ST_CombineBrackets["none"] = "none";
|
|
349
|
-
ST_CombineBrackets["round"] = "round";
|
|
350
|
-
ST_CombineBrackets["square"] = "square";
|
|
351
|
-
ST_CombineBrackets["angle"] = "angle";
|
|
352
|
-
ST_CombineBrackets["curly"] = "curly";
|
|
353
|
-
})(ST_CombineBrackets || (ST_CombineBrackets = {}));
|
|
354
|
-
var ST_HeightRule;
|
|
355
|
-
(function (ST_HeightRule) {
|
|
356
|
-
ST_HeightRule["auto"] = "auto";
|
|
357
|
-
ST_HeightRule["exact"] = "exact";
|
|
358
|
-
ST_HeightRule["atLeast"] = "atLeast";
|
|
359
|
-
})(ST_HeightRule || (ST_HeightRule = {}));
|
|
360
|
-
var ST_Wrap;
|
|
361
|
-
(function (ST_Wrap) {
|
|
362
|
-
ST_Wrap["auto"] = "auto";
|
|
363
|
-
ST_Wrap["notBeside"] = "notBeside";
|
|
364
|
-
ST_Wrap["around"] = "around";
|
|
365
|
-
ST_Wrap["tight"] = "tight";
|
|
366
|
-
ST_Wrap["through"] = "through";
|
|
367
|
-
ST_Wrap["none"] = "none";
|
|
368
|
-
})(ST_Wrap || (ST_Wrap = {}));
|
|
369
|
-
var ST_VAnchor;
|
|
370
|
-
(function (ST_VAnchor) {
|
|
371
|
-
ST_VAnchor["text"] = "text";
|
|
372
|
-
ST_VAnchor["margin"] = "margin";
|
|
373
|
-
ST_VAnchor["page"] = "page";
|
|
374
|
-
})(ST_VAnchor || (ST_VAnchor = {}));
|
|
375
|
-
var ST_HAnchor;
|
|
376
|
-
(function (ST_HAnchor) {
|
|
377
|
-
ST_HAnchor["text"] = "text";
|
|
378
|
-
ST_HAnchor["margin"] = "margin";
|
|
379
|
-
ST_HAnchor["page"] = "page";
|
|
380
|
-
})(ST_HAnchor || (ST_HAnchor = {}));
|
|
381
|
-
var ST_DropCap;
|
|
382
|
-
(function (ST_DropCap) {
|
|
383
|
-
ST_DropCap["none"] = "none";
|
|
384
|
-
ST_DropCap["drop"] = "drop";
|
|
385
|
-
ST_DropCap["margin"] = "margin";
|
|
386
|
-
})(ST_DropCap || (ST_DropCap = {}));
|
|
387
|
-
var ST_TabJc;
|
|
388
|
-
(function (ST_TabJc) {
|
|
389
|
-
ST_TabJc["clear"] = "clear";
|
|
390
|
-
ST_TabJc["start"] = "start";
|
|
391
|
-
ST_TabJc["center"] = "center";
|
|
392
|
-
ST_TabJc["end"] = "end";
|
|
393
|
-
ST_TabJc["decimal"] = "decimal";
|
|
394
|
-
ST_TabJc["bar"] = "bar";
|
|
395
|
-
ST_TabJc["num"] = "num";
|
|
396
|
-
})(ST_TabJc || (ST_TabJc = {}));
|
|
397
|
-
var ST_TabTlc;
|
|
398
|
-
(function (ST_TabTlc) {
|
|
399
|
-
ST_TabTlc["none"] = "none";
|
|
400
|
-
ST_TabTlc["dot"] = "dot";
|
|
401
|
-
ST_TabTlc["hyphen"] = "hyphen";
|
|
402
|
-
ST_TabTlc["underscore"] = "underscore";
|
|
403
|
-
ST_TabTlc["heavy"] = "heavy";
|
|
404
|
-
ST_TabTlc["middleDot"] = "middleDot";
|
|
405
|
-
})(ST_TabTlc || (ST_TabTlc = {}));
|
|
406
|
-
var ST_LineSpacingRule;
|
|
407
|
-
(function (ST_LineSpacingRule) {
|
|
408
|
-
ST_LineSpacingRule["auto"] = "auto";
|
|
409
|
-
ST_LineSpacingRule["exact"] = "exact";
|
|
410
|
-
ST_LineSpacingRule["atLeast"] = "atLeast";
|
|
411
|
-
})(ST_LineSpacingRule || (ST_LineSpacingRule = {}));
|
|
412
|
-
var ST_Jc;
|
|
413
|
-
(function (ST_Jc) {
|
|
414
|
-
ST_Jc["start"] = "start";
|
|
415
|
-
ST_Jc["center"] = "center";
|
|
416
|
-
ST_Jc["end"] = "end";
|
|
417
|
-
ST_Jc["both"] = "both";
|
|
418
|
-
ST_Jc["mediumKashida"] = "mediumKashida";
|
|
419
|
-
ST_Jc["distribute"] = "distribute";
|
|
420
|
-
ST_Jc["numTab"] = "numTab";
|
|
421
|
-
ST_Jc["highKashida"] = "highKashida";
|
|
422
|
-
ST_Jc["lowKashida"] = "lowKashida";
|
|
423
|
-
ST_Jc["thaiDistribute"] = "thaiDistribute";
|
|
424
|
-
})(ST_Jc || (ST_Jc = {}));
|
|
425
|
-
var ST_JcTable;
|
|
426
|
-
(function (ST_JcTable) {
|
|
427
|
-
ST_JcTable["center"] = "center";
|
|
428
|
-
ST_JcTable["end"] = "end";
|
|
429
|
-
ST_JcTable["start"] = "start";
|
|
430
|
-
})(ST_JcTable || (ST_JcTable = {}));
|
|
431
|
-
var ST_View;
|
|
432
|
-
(function (ST_View) {
|
|
433
|
-
ST_View["none"] = "none";
|
|
434
|
-
ST_View["print"] = "print";
|
|
435
|
-
ST_View["outline"] = "outline";
|
|
436
|
-
ST_View["masterPages"] = "masterPages";
|
|
437
|
-
ST_View["normal"] = "normal";
|
|
438
|
-
ST_View["web"] = "web";
|
|
439
|
-
})(ST_View || (ST_View = {}));
|
|
440
|
-
var ST_Zoom;
|
|
441
|
-
(function (ST_Zoom) {
|
|
442
|
-
ST_Zoom["none"] = "none";
|
|
443
|
-
ST_Zoom["fullPage"] = "fullPage";
|
|
444
|
-
ST_Zoom["bestFit"] = "bestFit";
|
|
445
|
-
ST_Zoom["textFit"] = "textFit";
|
|
446
|
-
})(ST_Zoom || (ST_Zoom = {}));
|
|
447
|
-
var ST_Proof;
|
|
448
|
-
(function (ST_Proof) {
|
|
449
|
-
ST_Proof["clean"] = "clean";
|
|
450
|
-
ST_Proof["dirty"] = "dirty";
|
|
451
|
-
})(ST_Proof || (ST_Proof = {}));
|
|
452
|
-
var ST_DocProtect;
|
|
453
|
-
(function (ST_DocProtect) {
|
|
454
|
-
ST_DocProtect["none"] = "none";
|
|
455
|
-
ST_DocProtect["readOnly"] = "readOnly";
|
|
456
|
-
ST_DocProtect["comments"] = "comments";
|
|
457
|
-
ST_DocProtect["trackedChanges"] = "trackedChanges";
|
|
458
|
-
ST_DocProtect["forms"] = "forms";
|
|
459
|
-
})(ST_DocProtect || (ST_DocProtect = {}));
|
|
460
|
-
var ST_MailMergeDocType;
|
|
461
|
-
(function (ST_MailMergeDocType) {
|
|
462
|
-
ST_MailMergeDocType["catalog"] = "catalog";
|
|
463
|
-
ST_MailMergeDocType["envelopes"] = "envelopes";
|
|
464
|
-
ST_MailMergeDocType["mailingLabels"] = "mailingLabels";
|
|
465
|
-
ST_MailMergeDocType["formLetters"] = "formLetters";
|
|
466
|
-
ST_MailMergeDocType["email"] = "email";
|
|
467
|
-
ST_MailMergeDocType["fax"] = "fax";
|
|
468
|
-
})(ST_MailMergeDocType || (ST_MailMergeDocType = {}));
|
|
469
|
-
var ST_MailMergeDest;
|
|
470
|
-
(function (ST_MailMergeDest) {
|
|
471
|
-
ST_MailMergeDest["newDocument"] = "newDocument";
|
|
472
|
-
ST_MailMergeDest["printer"] = "printer";
|
|
473
|
-
ST_MailMergeDest["email"] = "email";
|
|
474
|
-
ST_MailMergeDest["fax"] = "fax";
|
|
475
|
-
})(ST_MailMergeDest || (ST_MailMergeDest = {}));
|
|
476
|
-
var ST_MailMergeOdsoFMDFieldType;
|
|
477
|
-
(function (ST_MailMergeOdsoFMDFieldType) {
|
|
478
|
-
ST_MailMergeOdsoFMDFieldType["null"] = "null";
|
|
479
|
-
ST_MailMergeOdsoFMDFieldType["dbColumn"] = "dbColumn";
|
|
480
|
-
})(ST_MailMergeOdsoFMDFieldType || (ST_MailMergeOdsoFMDFieldType = {}));
|
|
481
|
-
var ST_TextDirection;
|
|
482
|
-
(function (ST_TextDirection) {
|
|
483
|
-
ST_TextDirection["tb"] = "tb";
|
|
484
|
-
ST_TextDirection["rl"] = "rl";
|
|
485
|
-
ST_TextDirection["lr"] = "lr";
|
|
486
|
-
ST_TextDirection["tbV"] = "tbV";
|
|
487
|
-
ST_TextDirection["rlV"] = "rlV";
|
|
488
|
-
ST_TextDirection["lrV"] = "lrV";
|
|
489
|
-
})(ST_TextDirection || (ST_TextDirection = {}));
|
|
490
|
-
var ST_TextAlignment;
|
|
491
|
-
(function (ST_TextAlignment) {
|
|
492
|
-
ST_TextAlignment["top"] = "top";
|
|
493
|
-
ST_TextAlignment["center"] = "center";
|
|
494
|
-
ST_TextAlignment["baseline"] = "baseline";
|
|
495
|
-
ST_TextAlignment["bottom"] = "bottom";
|
|
496
|
-
ST_TextAlignment["auto"] = "auto";
|
|
497
|
-
})(ST_TextAlignment || (ST_TextAlignment = {}));
|
|
498
|
-
var ST_DisplacedByCustomXml;
|
|
499
|
-
(function (ST_DisplacedByCustomXml) {
|
|
500
|
-
ST_DisplacedByCustomXml["next"] = "next";
|
|
501
|
-
ST_DisplacedByCustomXml["prev"] = "prev";
|
|
502
|
-
})(ST_DisplacedByCustomXml || (ST_DisplacedByCustomXml = {}));
|
|
503
|
-
var ST_AnnotationVMerge;
|
|
504
|
-
(function (ST_AnnotationVMerge) {
|
|
505
|
-
ST_AnnotationVMerge["cont"] = "cont";
|
|
506
|
-
ST_AnnotationVMerge["rest"] = "rest";
|
|
507
|
-
})(ST_AnnotationVMerge || (ST_AnnotationVMerge = {}));
|
|
508
|
-
var ST_TextboxTightWrap;
|
|
509
|
-
(function (ST_TextboxTightWrap) {
|
|
510
|
-
ST_TextboxTightWrap["none"] = "none";
|
|
511
|
-
ST_TextboxTightWrap["allLines"] = "allLines";
|
|
512
|
-
ST_TextboxTightWrap["firstAndLastLine"] = "firstAndLastLine";
|
|
513
|
-
ST_TextboxTightWrap["firstLineOnly"] = "firstLineOnly";
|
|
514
|
-
ST_TextboxTightWrap["lastLineOnly"] = "lastLineOnly";
|
|
515
|
-
})(ST_TextboxTightWrap || (ST_TextboxTightWrap = {}));
|
|
516
|
-
var ST_ObjectDrawAspect;
|
|
517
|
-
(function (ST_ObjectDrawAspect) {
|
|
518
|
-
ST_ObjectDrawAspect["content"] = "content";
|
|
519
|
-
ST_ObjectDrawAspect["icon"] = "icon";
|
|
520
|
-
})(ST_ObjectDrawAspect || (ST_ObjectDrawAspect = {}));
|
|
521
|
-
var ST_ObjectUpdateMode;
|
|
522
|
-
(function (ST_ObjectUpdateMode) {
|
|
523
|
-
ST_ObjectUpdateMode["always"] = "always";
|
|
524
|
-
ST_ObjectUpdateMode["onCall"] = "onCall";
|
|
525
|
-
})(ST_ObjectUpdateMode || (ST_ObjectUpdateMode = {}));
|
|
526
|
-
var ST_FldCharType;
|
|
527
|
-
(function (ST_FldCharType) {
|
|
528
|
-
ST_FldCharType["begin"] = "begin";
|
|
529
|
-
ST_FldCharType["separate"] = "separate";
|
|
530
|
-
ST_FldCharType["end"] = "end";
|
|
531
|
-
})(ST_FldCharType || (ST_FldCharType = {}));
|
|
532
|
-
var ST_InfoTextType;
|
|
533
|
-
(function (ST_InfoTextType) {
|
|
534
|
-
ST_InfoTextType["text"] = "text";
|
|
535
|
-
ST_InfoTextType["autoText"] = "autoText";
|
|
536
|
-
})(ST_InfoTextType || (ST_InfoTextType = {}));
|
|
537
|
-
var ST_FFTextType;
|
|
538
|
-
(function (ST_FFTextType) {
|
|
539
|
-
ST_FFTextType["regular"] = "regular";
|
|
540
|
-
ST_FFTextType["number"] = "number";
|
|
541
|
-
ST_FFTextType["date"] = "date";
|
|
542
|
-
ST_FFTextType["currentTime"] = "currentTime";
|
|
543
|
-
ST_FFTextType["currentDate"] = "currentDate";
|
|
544
|
-
ST_FFTextType["calculated"] = "calculated";
|
|
545
|
-
})(ST_FFTextType || (ST_FFTextType = {}));
|
|
546
|
-
var ST_SectionMark;
|
|
547
|
-
(function (ST_SectionMark) {
|
|
548
|
-
ST_SectionMark["nextPage"] = "nextPage";
|
|
549
|
-
ST_SectionMark["nextColumn"] = "nextColumn";
|
|
550
|
-
ST_SectionMark["continuous"] = "continuous";
|
|
551
|
-
ST_SectionMark["evenPage"] = "evenPage";
|
|
552
|
-
ST_SectionMark["oddPage"] = "oddPage";
|
|
553
|
-
})(ST_SectionMark || (ST_SectionMark = {}));
|
|
554
|
-
var ST_NumberFormat;
|
|
555
|
-
(function (ST_NumberFormat) {
|
|
556
|
-
ST_NumberFormat["decimal"] = "decimal";
|
|
557
|
-
ST_NumberFormat["upperRoman"] = "upperRoman";
|
|
558
|
-
ST_NumberFormat["lowerRoman"] = "lowerRoman";
|
|
559
|
-
ST_NumberFormat["upperLetter"] = "upperLetter";
|
|
560
|
-
ST_NumberFormat["lowerLetter"] = "lowerLetter";
|
|
561
|
-
ST_NumberFormat["ordinal"] = "ordinal";
|
|
562
|
-
ST_NumberFormat["cardinalText"] = "cardinalText";
|
|
563
|
-
ST_NumberFormat["ordinalText"] = "ordinalText";
|
|
564
|
-
ST_NumberFormat["hex"] = "hex";
|
|
565
|
-
ST_NumberFormat["chicago"] = "chicago";
|
|
566
|
-
ST_NumberFormat["ideographDigital"] = "ideographDigital";
|
|
567
|
-
ST_NumberFormat["japaneseCounting"] = "japaneseCounting";
|
|
568
|
-
ST_NumberFormat["aiueo"] = "aiueo";
|
|
569
|
-
ST_NumberFormat["iroha"] = "iroha";
|
|
570
|
-
ST_NumberFormat["decimalFullWidth"] = "decimalFullWidth";
|
|
571
|
-
ST_NumberFormat["decimalHalfWidth"] = "decimalHalfWidth";
|
|
572
|
-
ST_NumberFormat["japaneseLegal"] = "japaneseLegal";
|
|
573
|
-
ST_NumberFormat["japaneseDigitalTenThousand"] = "japaneseDigitalTenThousand";
|
|
574
|
-
ST_NumberFormat["decimalEnclosedCircle"] = "decimalEnclosedCircle";
|
|
575
|
-
ST_NumberFormat["decimalFullWidth2"] = "decimalFullWidth2";
|
|
576
|
-
ST_NumberFormat["aiueoFullWidth"] = "aiueoFullWidth";
|
|
577
|
-
ST_NumberFormat["irohaFullWidth"] = "irohaFullWidth";
|
|
578
|
-
ST_NumberFormat["decimalZero"] = "decimalZero";
|
|
579
|
-
ST_NumberFormat["bullet"] = "bullet";
|
|
580
|
-
ST_NumberFormat["ganada"] = "ganada";
|
|
581
|
-
ST_NumberFormat["chosung"] = "chosung";
|
|
582
|
-
ST_NumberFormat["decimalEnclosedFullstop"] = "decimalEnclosedFullstop";
|
|
583
|
-
ST_NumberFormat["decimalEnclosedParen"] = "decimalEnclosedParen";
|
|
584
|
-
ST_NumberFormat["decimalEnclosedCircleChinese"] = "decimalEnclosedCircleChinese";
|
|
585
|
-
ST_NumberFormat["ideographEnclosedCircle"] = "ideographEnclosedCircle";
|
|
586
|
-
ST_NumberFormat["ideographTraditional"] = "ideographTraditional";
|
|
587
|
-
ST_NumberFormat["ideographZodiac"] = "ideographZodiac";
|
|
588
|
-
ST_NumberFormat["ideographZodiacTraditional"] = "ideographZodiacTraditional";
|
|
589
|
-
ST_NumberFormat["taiwaneseCounting"] = "taiwaneseCounting";
|
|
590
|
-
ST_NumberFormat["ideographLegalTraditional"] = "ideographLegalTraditional";
|
|
591
|
-
ST_NumberFormat["taiwaneseCountingThousand"] = "taiwaneseCountingThousand";
|
|
592
|
-
ST_NumberFormat["taiwaneseDigital"] = "taiwaneseDigital";
|
|
593
|
-
ST_NumberFormat["chineseCounting"] = "chineseCounting";
|
|
594
|
-
ST_NumberFormat["chineseLegalSimplified"] = "chineseLegalSimplified";
|
|
595
|
-
ST_NumberFormat["chineseCountingThousand"] = "chineseCountingThousand";
|
|
596
|
-
ST_NumberFormat["koreanDigital"] = "koreanDigital";
|
|
597
|
-
ST_NumberFormat["koreanCounting"] = "koreanCounting";
|
|
598
|
-
ST_NumberFormat["koreanLegal"] = "koreanLegal";
|
|
599
|
-
ST_NumberFormat["koreanDigital2"] = "koreanDigital2";
|
|
600
|
-
ST_NumberFormat["vietnameseCounting"] = "vietnameseCounting";
|
|
601
|
-
ST_NumberFormat["russianLower"] = "russianLower";
|
|
602
|
-
ST_NumberFormat["russianUpper"] = "russianUpper";
|
|
603
|
-
ST_NumberFormat["none"] = "none";
|
|
604
|
-
ST_NumberFormat["numberInDash"] = "numberInDash";
|
|
605
|
-
ST_NumberFormat["hebrew1"] = "hebrew1";
|
|
606
|
-
ST_NumberFormat["hebrew2"] = "hebrew2";
|
|
607
|
-
ST_NumberFormat["arabicAlpha"] = "arabicAlpha";
|
|
608
|
-
ST_NumberFormat["arabicAbjad"] = "arabicAbjad";
|
|
609
|
-
ST_NumberFormat["hindiVowels"] = "hindiVowels";
|
|
610
|
-
ST_NumberFormat["hindiConsonants"] = "hindiConsonants";
|
|
611
|
-
ST_NumberFormat["hindiNumbers"] = "hindiNumbers";
|
|
612
|
-
ST_NumberFormat["hindiCounting"] = "hindiCounting";
|
|
613
|
-
ST_NumberFormat["thaiLetters"] = "thaiLetters";
|
|
614
|
-
ST_NumberFormat["thaiNumbers"] = "thaiNumbers";
|
|
615
|
-
ST_NumberFormat["thaiCounting"] = "thaiCounting";
|
|
616
|
-
ST_NumberFormat["bahtText"] = "bahtText";
|
|
617
|
-
ST_NumberFormat["dollarText"] = "dollarText";
|
|
618
|
-
ST_NumberFormat["custom"] = "custom";
|
|
619
|
-
})(ST_NumberFormat || (ST_NumberFormat = {}));
|
|
620
|
-
var ST_PageOrientation;
|
|
621
|
-
(function (ST_PageOrientation) {
|
|
622
|
-
ST_PageOrientation["portrait"] = "portrait";
|
|
623
|
-
ST_PageOrientation["landscape"] = "landscape";
|
|
624
|
-
})(ST_PageOrientation || (ST_PageOrientation = {}));
|
|
625
|
-
var ST_PageBorderZOrder;
|
|
626
|
-
(function (ST_PageBorderZOrder) {
|
|
627
|
-
ST_PageBorderZOrder["front"] = "front";
|
|
628
|
-
ST_PageBorderZOrder["back"] = "back";
|
|
629
|
-
})(ST_PageBorderZOrder || (ST_PageBorderZOrder = {}));
|
|
630
|
-
var ST_PageBorderDisplay;
|
|
631
|
-
(function (ST_PageBorderDisplay) {
|
|
632
|
-
ST_PageBorderDisplay["allPages"] = "allPages";
|
|
633
|
-
ST_PageBorderDisplay["firstPage"] = "firstPage";
|
|
634
|
-
ST_PageBorderDisplay["notFirstPage"] = "notFirstPage";
|
|
635
|
-
})(ST_PageBorderDisplay || (ST_PageBorderDisplay = {}));
|
|
636
|
-
var ST_PageBorderOffset;
|
|
637
|
-
(function (ST_PageBorderOffset) {
|
|
638
|
-
ST_PageBorderOffset["page"] = "page";
|
|
639
|
-
ST_PageBorderOffset["text"] = "text";
|
|
640
|
-
})(ST_PageBorderOffset || (ST_PageBorderOffset = {}));
|
|
641
|
-
var ST_ChapterSep;
|
|
642
|
-
(function (ST_ChapterSep) {
|
|
643
|
-
ST_ChapterSep["hyphen"] = "hyphen";
|
|
644
|
-
ST_ChapterSep["period"] = "period";
|
|
645
|
-
ST_ChapterSep["colon"] = "colon";
|
|
646
|
-
ST_ChapterSep["emDash"] = "emDash";
|
|
647
|
-
ST_ChapterSep["enDash"] = "enDash";
|
|
648
|
-
})(ST_ChapterSep || (ST_ChapterSep = {}));
|
|
649
|
-
var ST_LineNumberRestart;
|
|
650
|
-
(function (ST_LineNumberRestart) {
|
|
651
|
-
ST_LineNumberRestart["newPage"] = "newPage";
|
|
652
|
-
ST_LineNumberRestart["newSection"] = "newSection";
|
|
653
|
-
ST_LineNumberRestart["continuous"] = "continuous";
|
|
654
|
-
})(ST_LineNumberRestart || (ST_LineNumberRestart = {}));
|
|
655
|
-
var ST_VerticalJc;
|
|
656
|
-
(function (ST_VerticalJc) {
|
|
657
|
-
ST_VerticalJc["top"] = "top";
|
|
658
|
-
ST_VerticalJc["center"] = "center";
|
|
659
|
-
ST_VerticalJc["both"] = "both";
|
|
660
|
-
ST_VerticalJc["bottom"] = "bottom";
|
|
661
|
-
})(ST_VerticalJc || (ST_VerticalJc = {}));
|
|
662
|
-
var ST_DocGrid;
|
|
663
|
-
(function (ST_DocGrid) {
|
|
664
|
-
ST_DocGrid["default"] = "default";
|
|
665
|
-
ST_DocGrid["lines"] = "lines";
|
|
666
|
-
ST_DocGrid["linesAndChars"] = "linesAndChars";
|
|
667
|
-
ST_DocGrid["snapToChars"] = "snapToChars";
|
|
668
|
-
})(ST_DocGrid || (ST_DocGrid = {}));
|
|
669
|
-
var ST_HdrFtr;
|
|
670
|
-
(function (ST_HdrFtr) {
|
|
671
|
-
ST_HdrFtr["even"] = "even";
|
|
672
|
-
ST_HdrFtr["default"] = "default";
|
|
673
|
-
ST_HdrFtr["first"] = "first";
|
|
674
|
-
})(ST_HdrFtr || (ST_HdrFtr = {}));
|
|
675
|
-
var ST_FtnEdn;
|
|
676
|
-
(function (ST_FtnEdn) {
|
|
677
|
-
ST_FtnEdn["normal"] = "normal";
|
|
678
|
-
ST_FtnEdn["separator"] = "separator";
|
|
679
|
-
ST_FtnEdn["continuationSeparator"] = "continuationSeparator";
|
|
680
|
-
ST_FtnEdn["continuationNotice"] = "continuationNotice";
|
|
681
|
-
})(ST_FtnEdn || (ST_FtnEdn = {}));
|
|
682
|
-
var ST_BrType;
|
|
683
|
-
(function (ST_BrType) {
|
|
684
|
-
ST_BrType["page"] = "page";
|
|
685
|
-
ST_BrType["column"] = "column";
|
|
686
|
-
ST_BrType["textWrapping"] = "textWrapping";
|
|
687
|
-
})(ST_BrType || (ST_BrType = {}));
|
|
688
|
-
var ST_BrClear;
|
|
689
|
-
(function (ST_BrClear) {
|
|
690
|
-
ST_BrClear["none"] = "none";
|
|
691
|
-
ST_BrClear["left"] = "left";
|
|
692
|
-
ST_BrClear["right"] = "right";
|
|
693
|
-
ST_BrClear["all"] = "all";
|
|
694
|
-
})(ST_BrClear || (ST_BrClear = {}));
|
|
695
|
-
var ST_PTabAlignment;
|
|
696
|
-
(function (ST_PTabAlignment) {
|
|
697
|
-
ST_PTabAlignment["left"] = "left";
|
|
698
|
-
ST_PTabAlignment["center"] = "center";
|
|
699
|
-
ST_PTabAlignment["right"] = "right";
|
|
700
|
-
})(ST_PTabAlignment || (ST_PTabAlignment = {}));
|
|
701
|
-
var ST_PTabRelativeTo;
|
|
702
|
-
(function (ST_PTabRelativeTo) {
|
|
703
|
-
ST_PTabRelativeTo["margin"] = "margin";
|
|
704
|
-
ST_PTabRelativeTo["indent"] = "indent";
|
|
705
|
-
})(ST_PTabRelativeTo || (ST_PTabRelativeTo = {}));
|
|
706
|
-
var ST_PTabLeader;
|
|
707
|
-
(function (ST_PTabLeader) {
|
|
708
|
-
ST_PTabLeader["none"] = "none";
|
|
709
|
-
ST_PTabLeader["dot"] = "dot";
|
|
710
|
-
ST_PTabLeader["hyphen"] = "hyphen";
|
|
711
|
-
ST_PTabLeader["underscore"] = "underscore";
|
|
712
|
-
ST_PTabLeader["middleDot"] = "middleDot";
|
|
713
|
-
})(ST_PTabLeader || (ST_PTabLeader = {}));
|
|
714
|
-
var ST_ProofErr;
|
|
715
|
-
(function (ST_ProofErr) {
|
|
716
|
-
ST_ProofErr["spellStart"] = "spellStart";
|
|
717
|
-
ST_ProofErr["spellEnd"] = "spellEnd";
|
|
718
|
-
ST_ProofErr["gramStart"] = "gramStart";
|
|
719
|
-
ST_ProofErr["gramEnd"] = "gramEnd";
|
|
720
|
-
})(ST_ProofErr || (ST_ProofErr = {}));
|
|
721
|
-
var ST_EdGrp;
|
|
722
|
-
(function (ST_EdGrp) {
|
|
723
|
-
ST_EdGrp["none"] = "none";
|
|
724
|
-
ST_EdGrp["everyone"] = "everyone";
|
|
725
|
-
ST_EdGrp["administrators"] = "administrators";
|
|
726
|
-
ST_EdGrp["contributors"] = "contributors";
|
|
727
|
-
ST_EdGrp["editors"] = "editors";
|
|
728
|
-
ST_EdGrp["owners"] = "owners";
|
|
729
|
-
ST_EdGrp["current"] = "current";
|
|
730
|
-
})(ST_EdGrp || (ST_EdGrp = {}));
|
|
731
|
-
var ST_Hint;
|
|
732
|
-
(function (ST_Hint) {
|
|
733
|
-
ST_Hint["default"] = "default";
|
|
734
|
-
ST_Hint["eastAsia"] = "eastAsia";
|
|
735
|
-
})(ST_Hint || (ST_Hint = {}));
|
|
736
|
-
var ST_Theme;
|
|
737
|
-
(function (ST_Theme) {
|
|
738
|
-
ST_Theme["majorEastAsia"] = "majorEastAsia";
|
|
739
|
-
ST_Theme["majorBidi"] = "majorBidi";
|
|
740
|
-
ST_Theme["majorAscii"] = "majorAscii";
|
|
741
|
-
ST_Theme["majorHAnsi"] = "majorHAnsi";
|
|
742
|
-
ST_Theme["minorEastAsia"] = "minorEastAsia";
|
|
743
|
-
ST_Theme["minorBidi"] = "minorBidi";
|
|
744
|
-
ST_Theme["minorAscii"] = "minorAscii";
|
|
745
|
-
ST_Theme["minorHAnsi"] = "minorHAnsi";
|
|
746
|
-
})(ST_Theme || (ST_Theme = {}));
|
|
747
|
-
var ST_RubyAlign;
|
|
748
|
-
(function (ST_RubyAlign) {
|
|
749
|
-
ST_RubyAlign["center"] = "center";
|
|
750
|
-
ST_RubyAlign["distributeLetter"] = "distributeLetter";
|
|
751
|
-
ST_RubyAlign["distributeSpace"] = "distributeSpace";
|
|
752
|
-
ST_RubyAlign["left"] = "left";
|
|
753
|
-
ST_RubyAlign["right"] = "right";
|
|
754
|
-
ST_RubyAlign["rightVertical"] = "rightVertical";
|
|
755
|
-
})(ST_RubyAlign || (ST_RubyAlign = {}));
|
|
756
|
-
var ST_Lock;
|
|
757
|
-
(function (ST_Lock) {
|
|
758
|
-
ST_Lock["sdtLocked"] = "sdtLocked";
|
|
759
|
-
ST_Lock["contentLocked"] = "contentLocked";
|
|
760
|
-
ST_Lock["unlocked"] = "unlocked";
|
|
761
|
-
ST_Lock["sdtContentLocked"] = "sdtContentLocked";
|
|
762
|
-
})(ST_Lock || (ST_Lock = {}));
|
|
763
|
-
var ST_SdtDateMappingType;
|
|
764
|
-
(function (ST_SdtDateMappingType) {
|
|
765
|
-
ST_SdtDateMappingType["text"] = "text";
|
|
766
|
-
ST_SdtDateMappingType["date"] = "date";
|
|
767
|
-
ST_SdtDateMappingType["dateTime"] = "dateTime";
|
|
768
|
-
})(ST_SdtDateMappingType || (ST_SdtDateMappingType = {}));
|
|
769
|
-
var ST_Direction;
|
|
770
|
-
(function (ST_Direction) {
|
|
771
|
-
ST_Direction["ltr"] = "ltr";
|
|
772
|
-
ST_Direction["rtl"] = "rtl";
|
|
773
|
-
})(ST_Direction || (ST_Direction = {}));
|
|
774
|
-
var ST_TblWidth;
|
|
775
|
-
(function (ST_TblWidth) {
|
|
776
|
-
ST_TblWidth["nil"] = "nil";
|
|
777
|
-
ST_TblWidth["pct"] = "pct";
|
|
778
|
-
ST_TblWidth["dxa"] = "dxa";
|
|
779
|
-
ST_TblWidth["auto"] = "auto";
|
|
780
|
-
})(ST_TblWidth || (ST_TblWidth = {}));
|
|
781
|
-
var ST_Merge;
|
|
782
|
-
(function (ST_Merge) {
|
|
783
|
-
ST_Merge["continue"] = "continue";
|
|
784
|
-
ST_Merge["restart"] = "restart";
|
|
785
|
-
})(ST_Merge || (ST_Merge = {}));
|
|
786
|
-
var ST_TblLayoutType;
|
|
787
|
-
(function (ST_TblLayoutType) {
|
|
788
|
-
ST_TblLayoutType["fixed"] = "fixed";
|
|
789
|
-
ST_TblLayoutType["autofit"] = "autofit";
|
|
790
|
-
})(ST_TblLayoutType || (ST_TblLayoutType = {}));
|
|
791
|
-
var ST_TblOverlap;
|
|
792
|
-
(function (ST_TblOverlap) {
|
|
793
|
-
ST_TblOverlap["never"] = "never";
|
|
794
|
-
ST_TblOverlap["overlap"] = "overlap";
|
|
795
|
-
})(ST_TblOverlap || (ST_TblOverlap = {}));
|
|
796
|
-
var ST_FtnPos;
|
|
797
|
-
(function (ST_FtnPos) {
|
|
798
|
-
ST_FtnPos["pageBottom"] = "pageBottom";
|
|
799
|
-
ST_FtnPos["beneathText"] = "beneathText";
|
|
800
|
-
ST_FtnPos["sectEnd"] = "sectEnd";
|
|
801
|
-
ST_FtnPos["docEnd"] = "docEnd";
|
|
802
|
-
})(ST_FtnPos || (ST_FtnPos = {}));
|
|
803
|
-
var ST_EdnPos;
|
|
804
|
-
(function (ST_EdnPos) {
|
|
805
|
-
ST_EdnPos["sectEnd"] = "sectEnd";
|
|
806
|
-
ST_EdnPos["docEnd"] = "docEnd";
|
|
807
|
-
})(ST_EdnPos || (ST_EdnPos = {}));
|
|
808
|
-
var ST_RestartNumber;
|
|
809
|
-
(function (ST_RestartNumber) {
|
|
810
|
-
ST_RestartNumber["continuous"] = "continuous";
|
|
811
|
-
ST_RestartNumber["eachSect"] = "eachSect";
|
|
812
|
-
ST_RestartNumber["eachPage"] = "eachPage";
|
|
813
|
-
})(ST_RestartNumber || (ST_RestartNumber = {}));
|
|
814
|
-
var ST_MailMergeSourceType;
|
|
815
|
-
(function (ST_MailMergeSourceType) {
|
|
816
|
-
ST_MailMergeSourceType["database"] = "database";
|
|
817
|
-
ST_MailMergeSourceType["addressBook"] = "addressBook";
|
|
818
|
-
ST_MailMergeSourceType["document1"] = "document1";
|
|
819
|
-
ST_MailMergeSourceType["document2"] = "document2";
|
|
820
|
-
ST_MailMergeSourceType["text"] = "text";
|
|
821
|
-
ST_MailMergeSourceType["email"] = "email";
|
|
822
|
-
ST_MailMergeSourceType["native"] = "native";
|
|
823
|
-
ST_MailMergeSourceType["legacy"] = "legacy";
|
|
824
|
-
ST_MailMergeSourceType["master"] = "master";
|
|
825
|
-
})(ST_MailMergeSourceType || (ST_MailMergeSourceType = {}));
|
|
826
|
-
var ST_CharacterSpacing;
|
|
827
|
-
(function (ST_CharacterSpacing) {
|
|
828
|
-
ST_CharacterSpacing["doNotCompress"] = "doNotCompress";
|
|
829
|
-
ST_CharacterSpacing["compressPunctuation"] = "compressPunctuation";
|
|
830
|
-
ST_CharacterSpacing["compressPunctuationAndJapaneseKana"] = "compressPunctuationAndJapaneseKana";
|
|
831
|
-
})(ST_CharacterSpacing || (ST_CharacterSpacing = {}));
|
|
832
|
-
var ST_WmlColorSchemeIndex;
|
|
833
|
-
(function (ST_WmlColorSchemeIndex) {
|
|
834
|
-
ST_WmlColorSchemeIndex["dark1"] = "dark1";
|
|
835
|
-
ST_WmlColorSchemeIndex["light1"] = "light1";
|
|
836
|
-
ST_WmlColorSchemeIndex["dark2"] = "dark2";
|
|
837
|
-
ST_WmlColorSchemeIndex["light2"] = "light2";
|
|
838
|
-
ST_WmlColorSchemeIndex["accent1"] = "accent1";
|
|
839
|
-
ST_WmlColorSchemeIndex["accent2"] = "accent2";
|
|
840
|
-
ST_WmlColorSchemeIndex["accent3"] = "accent3";
|
|
841
|
-
ST_WmlColorSchemeIndex["accent4"] = "accent4";
|
|
842
|
-
ST_WmlColorSchemeIndex["accent5"] = "accent5";
|
|
843
|
-
ST_WmlColorSchemeIndex["accent6"] = "accent6";
|
|
844
|
-
ST_WmlColorSchemeIndex["hyperlink"] = "hyperlink";
|
|
845
|
-
ST_WmlColorSchemeIndex["followedHyperlink"] = "followedHyperlink";
|
|
846
|
-
})(ST_WmlColorSchemeIndex || (ST_WmlColorSchemeIndex = {}));
|
|
847
|
-
var ST_StyleSort;
|
|
848
|
-
(function (ST_StyleSort) {
|
|
849
|
-
ST_StyleSort["name"] = "name";
|
|
850
|
-
ST_StyleSort["priority"] = "priority";
|
|
851
|
-
ST_StyleSort["default"] = "default";
|
|
852
|
-
ST_StyleSort["font"] = "font";
|
|
853
|
-
ST_StyleSort["basedOn"] = "basedOn";
|
|
854
|
-
ST_StyleSort["type"] = "type";
|
|
855
|
-
})(ST_StyleSort || (ST_StyleSort = {}));
|
|
856
|
-
var ST_FrameScrollbar;
|
|
857
|
-
(function (ST_FrameScrollbar) {
|
|
858
|
-
ST_FrameScrollbar["on"] = "on";
|
|
859
|
-
ST_FrameScrollbar["off"] = "off";
|
|
860
|
-
ST_FrameScrollbar["auto"] = "auto";
|
|
861
|
-
})(ST_FrameScrollbar || (ST_FrameScrollbar = {}));
|
|
862
|
-
var ST_FrameLayout;
|
|
863
|
-
(function (ST_FrameLayout) {
|
|
864
|
-
ST_FrameLayout["rows"] = "rows";
|
|
865
|
-
ST_FrameLayout["cols"] = "cols";
|
|
866
|
-
ST_FrameLayout["none"] = "none";
|
|
867
|
-
})(ST_FrameLayout || (ST_FrameLayout = {}));
|
|
868
|
-
var ST_LevelSuffix;
|
|
869
|
-
(function (ST_LevelSuffix) {
|
|
870
|
-
ST_LevelSuffix["tab"] = "tab";
|
|
871
|
-
ST_LevelSuffix["space"] = "space";
|
|
872
|
-
ST_LevelSuffix["nothing"] = "nothing";
|
|
873
|
-
})(ST_LevelSuffix || (ST_LevelSuffix = {}));
|
|
874
|
-
var ST_MultiLevelType;
|
|
875
|
-
(function (ST_MultiLevelType) {
|
|
876
|
-
ST_MultiLevelType["singleLevel"] = "singleLevel";
|
|
877
|
-
ST_MultiLevelType["multilevel"] = "multilevel";
|
|
878
|
-
ST_MultiLevelType["hybridMultilevel"] = "hybridMultilevel";
|
|
879
|
-
})(ST_MultiLevelType || (ST_MultiLevelType = {}));
|
|
880
|
-
var ST_TblStyleOverrideType;
|
|
881
|
-
(function (ST_TblStyleOverrideType) {
|
|
882
|
-
ST_TblStyleOverrideType["wholeTable"] = "wholeTable";
|
|
883
|
-
ST_TblStyleOverrideType["firstRow"] = "firstRow";
|
|
884
|
-
ST_TblStyleOverrideType["lastRow"] = "lastRow";
|
|
885
|
-
ST_TblStyleOverrideType["firstCol"] = "firstCol";
|
|
886
|
-
ST_TblStyleOverrideType["lastCol"] = "lastCol";
|
|
887
|
-
ST_TblStyleOverrideType["band1Vert"] = "band1Vert";
|
|
888
|
-
ST_TblStyleOverrideType["band2Vert"] = "band2Vert";
|
|
889
|
-
ST_TblStyleOverrideType["band1Horz"] = "band1Horz";
|
|
890
|
-
ST_TblStyleOverrideType["band2Horz"] = "band2Horz";
|
|
891
|
-
ST_TblStyleOverrideType["neCell"] = "neCell";
|
|
892
|
-
ST_TblStyleOverrideType["nwCell"] = "nwCell";
|
|
893
|
-
ST_TblStyleOverrideType["seCell"] = "seCell";
|
|
894
|
-
ST_TblStyleOverrideType["swCell"] = "swCell";
|
|
895
|
-
})(ST_TblStyleOverrideType || (ST_TblStyleOverrideType = {}));
|
|
896
|
-
var ST_StyleType;
|
|
897
|
-
(function (ST_StyleType) {
|
|
898
|
-
ST_StyleType["paragraph"] = "paragraph";
|
|
899
|
-
ST_StyleType["character"] = "character";
|
|
900
|
-
ST_StyleType["table"] = "table";
|
|
901
|
-
ST_StyleType["numbering"] = "numbering";
|
|
902
|
-
})(ST_StyleType || (ST_StyleType = {}));
|
|
903
|
-
var ST_FontFamily;
|
|
904
|
-
(function (ST_FontFamily) {
|
|
905
|
-
ST_FontFamily["decorative"] = "decorative";
|
|
906
|
-
ST_FontFamily["modern"] = "modern";
|
|
907
|
-
ST_FontFamily["roman"] = "roman";
|
|
908
|
-
ST_FontFamily["script"] = "script";
|
|
909
|
-
ST_FontFamily["swiss"] = "swiss";
|
|
910
|
-
ST_FontFamily["auto"] = "auto";
|
|
911
|
-
})(ST_FontFamily || (ST_FontFamily = {}));
|
|
912
|
-
var ST_Pitch;
|
|
913
|
-
(function (ST_Pitch) {
|
|
914
|
-
ST_Pitch["fixed"] = "fixed";
|
|
915
|
-
ST_Pitch["variable"] = "variable";
|
|
916
|
-
ST_Pitch["default"] = "default";
|
|
917
|
-
})(ST_Pitch || (ST_Pitch = {}));
|
|
918
|
-
var ST_ThemeColor;
|
|
919
|
-
(function (ST_ThemeColor) {
|
|
920
|
-
ST_ThemeColor["dark1"] = "dark1";
|
|
921
|
-
ST_ThemeColor["light1"] = "light1";
|
|
922
|
-
ST_ThemeColor["dark2"] = "dark2";
|
|
923
|
-
ST_ThemeColor["light2"] = "light2";
|
|
924
|
-
ST_ThemeColor["accent1"] = "accent1";
|
|
925
|
-
ST_ThemeColor["accent2"] = "accent2";
|
|
926
|
-
ST_ThemeColor["accent3"] = "accent3";
|
|
927
|
-
ST_ThemeColor["accent4"] = "accent4";
|
|
928
|
-
ST_ThemeColor["accent5"] = "accent5";
|
|
929
|
-
ST_ThemeColor["accent6"] = "accent6";
|
|
930
|
-
ST_ThemeColor["hyperlink"] = "hyperlink";
|
|
931
|
-
ST_ThemeColor["followedHyperlink"] = "followedHyperlink";
|
|
932
|
-
ST_ThemeColor["none"] = "none";
|
|
933
|
-
ST_ThemeColor["background1"] = "background1";
|
|
934
|
-
ST_ThemeColor["text1"] = "text1";
|
|
935
|
-
ST_ThemeColor["background2"] = "background2";
|
|
936
|
-
ST_ThemeColor["text2"] = "text2";
|
|
937
|
-
})(ST_ThemeColor || (ST_ThemeColor = {}));
|
|
938
|
-
var ST_DocPartBehavior;
|
|
939
|
-
(function (ST_DocPartBehavior) {
|
|
940
|
-
ST_DocPartBehavior["content"] = "content";
|
|
941
|
-
ST_DocPartBehavior["p"] = "p";
|
|
942
|
-
ST_DocPartBehavior["pg"] = "pg";
|
|
943
|
-
})(ST_DocPartBehavior || (ST_DocPartBehavior = {}));
|
|
944
|
-
var ST_DocPartType;
|
|
945
|
-
(function (ST_DocPartType) {
|
|
946
|
-
ST_DocPartType["none"] = "none";
|
|
947
|
-
ST_DocPartType["normal"] = "normal";
|
|
948
|
-
ST_DocPartType["autoExp"] = "autoExp";
|
|
949
|
-
ST_DocPartType["toolbar"] = "toolbar";
|
|
950
|
-
ST_DocPartType["speller"] = "speller";
|
|
951
|
-
ST_DocPartType["formFld"] = "formFld";
|
|
952
|
-
ST_DocPartType["bbPlcHdr"] = "bbPlcHdr";
|
|
953
|
-
})(ST_DocPartType || (ST_DocPartType = {}));
|
|
954
|
-
var ST_DocPartGallery;
|
|
955
|
-
(function (ST_DocPartGallery) {
|
|
956
|
-
ST_DocPartGallery["placeholder"] = "placeholder";
|
|
957
|
-
ST_DocPartGallery["any"] = "any";
|
|
958
|
-
ST_DocPartGallery["default"] = "default";
|
|
959
|
-
ST_DocPartGallery["docParts"] = "docParts";
|
|
960
|
-
ST_DocPartGallery["coverPg"] = "coverPg";
|
|
961
|
-
ST_DocPartGallery["eq"] = "eq";
|
|
962
|
-
ST_DocPartGallery["ftrs"] = "ftrs";
|
|
963
|
-
ST_DocPartGallery["hdrs"] = "hdrs";
|
|
964
|
-
ST_DocPartGallery["pgNum"] = "pgNum";
|
|
965
|
-
ST_DocPartGallery["tbls"] = "tbls";
|
|
966
|
-
ST_DocPartGallery["watermarks"] = "watermarks";
|
|
967
|
-
ST_DocPartGallery["autoTxt"] = "autoTxt";
|
|
968
|
-
ST_DocPartGallery["txtBox"] = "txtBox";
|
|
969
|
-
ST_DocPartGallery["pgNumT"] = "pgNumT";
|
|
970
|
-
ST_DocPartGallery["pgNumB"] = "pgNumB";
|
|
971
|
-
ST_DocPartGallery["pgNumMargins"] = "pgNumMargins";
|
|
972
|
-
ST_DocPartGallery["tblOfContents"] = "tblOfContents";
|
|
973
|
-
ST_DocPartGallery["bib"] = "bib";
|
|
974
|
-
ST_DocPartGallery["custQuickParts"] = "custQuickParts";
|
|
975
|
-
ST_DocPartGallery["custCoverPg"] = "custCoverPg";
|
|
976
|
-
ST_DocPartGallery["custEq"] = "custEq";
|
|
977
|
-
ST_DocPartGallery["custFtrs"] = "custFtrs";
|
|
978
|
-
ST_DocPartGallery["custHdrs"] = "custHdrs";
|
|
979
|
-
ST_DocPartGallery["custPgNum"] = "custPgNum";
|
|
980
|
-
ST_DocPartGallery["custTbls"] = "custTbls";
|
|
981
|
-
ST_DocPartGallery["custWatermarks"] = "custWatermarks";
|
|
982
|
-
ST_DocPartGallery["custAutoTxt"] = "custAutoTxt";
|
|
983
|
-
ST_DocPartGallery["custTxtBox"] = "custTxtBox";
|
|
984
|
-
ST_DocPartGallery["custPgNumT"] = "custPgNumT";
|
|
985
|
-
ST_DocPartGallery["custPgNumB"] = "custPgNumB";
|
|
986
|
-
ST_DocPartGallery["custPgNumMargins"] = "custPgNumMargins";
|
|
987
|
-
ST_DocPartGallery["custTblOfContents"] = "custTblOfContents";
|
|
988
|
-
ST_DocPartGallery["custBib"] = "custBib";
|
|
989
|
-
ST_DocPartGallery["custom1"] = "custom1";
|
|
990
|
-
ST_DocPartGallery["custom2"] = "custom2";
|
|
991
|
-
ST_DocPartGallery["custom3"] = "custom3";
|
|
992
|
-
ST_DocPartGallery["custom4"] = "custom4";
|
|
993
|
-
ST_DocPartGallery["custom5"] = "custom5";
|
|
994
|
-
})(ST_DocPartGallery || (ST_DocPartGallery = {}));
|
|
995
|
-
var ST_CaptionPos;
|
|
996
|
-
(function (ST_CaptionPos) {
|
|
997
|
-
ST_CaptionPos["above"] = "above";
|
|
998
|
-
ST_CaptionPos["below"] = "below";
|
|
999
|
-
ST_CaptionPos["left"] = "left";
|
|
1000
|
-
ST_CaptionPos["right"] = "right";
|
|
1001
|
-
})(ST_CaptionPos || (ST_CaptionPos = {}));
|
|
1002
|
-
|
|
1003
|
-
export { ST_AnnotationVMerge, ST_Border, ST_BrClear, ST_BrType, ST_CalendarType, ST_CaptionPos, ST_ChapterSep, ST_CharacterSpacing, ST_CombineBrackets, ST_ConformanceClass, ST_Direction, ST_DisplacedByCustomXml, ST_DocGrid, ST_DocPartBehavior, ST_DocPartGallery, ST_DocPartType, ST_DocProtect, ST_DropCap, ST_EdGrp, ST_EdnPos, ST_Em, ST_FFTextType, ST_FldCharType, ST_FontFamily, ST_FrameLayout, ST_FrameScrollbar, ST_FtnEdn, ST_FtnPos, ST_HAnchor, ST_HdrFtr, ST_HeightRule, ST_HexColorAuto, ST_HighlightColor, ST_Hint, ST_InfoTextType, ST_Jc, ST_JcTable, ST_LevelSuffix, ST_LineNumberRestart, ST_LineSpacingRule, ST_Lock, ST_MailMergeDest, ST_MailMergeDocType, ST_MailMergeOdsoFMDFieldType, ST_MailMergeSourceType, ST_Merge, ST_MultiLevelType, ST_NumberFormat, ST_ObjectDrawAspect, ST_ObjectUpdateMode, ST_PTabAlignment, ST_PTabLeader, ST_PTabRelativeTo, ST_PageBorderDisplay, ST_PageBorderOffset, ST_PageBorderZOrder, ST_PageOrientation, ST_Pitch, ST_Proof, ST_ProofErr, ST_RestartNumber, ST_RubyAlign, ST_SdtDateMappingType, ST_SectionMark, ST_Shd, ST_StyleSort, ST_StyleType, ST_TabJc, ST_TabTlc, ST_TblLayoutType, ST_TblOverlap, ST_TblStyleOverrideType, ST_TblWidth, ST_TextAlignment, ST_TextDirection, ST_TextEffect, ST_TextboxTightWrap, ST_Theme, ST_ThemeColor, ST_Underline, ST_VAnchor, ST_VerticalAlignRun, ST_VerticalJc, ST_View, ST_WmlColorSchemeIndex, ST_Wrap, ST_XAlign, ST_YAlign, ST_Zoom };
|