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.d.ts
CHANGED
|
@@ -2,1459 +2,24 @@
|
|
|
2
2
|
export type ST_Lang = string;
|
|
3
3
|
export type ST_HexColorRGB = string;
|
|
4
4
|
export type ST_Panose = string;
|
|
5
|
-
export
|
|
6
|
-
gregorian = "gregorian",
|
|
7
|
-
gregorianUs = "gregorianUs",
|
|
8
|
-
gregorianMeFrench = "gregorianMeFrench",
|
|
9
|
-
gregorianArabic = "gregorianArabic",
|
|
10
|
-
hijri = "hijri",
|
|
11
|
-
hebrew = "hebrew",
|
|
12
|
-
taiwan = "taiwan",
|
|
13
|
-
japan = "japan",
|
|
14
|
-
thai = "thai",
|
|
15
|
-
korea = "korea",
|
|
16
|
-
saka = "saka",
|
|
17
|
-
gregorianXlitEnglish = "gregorianXlitEnglish",
|
|
18
|
-
gregorianXlitFrench = "gregorianXlitFrench",
|
|
19
|
-
none = "none"
|
|
20
|
-
}
|
|
5
|
+
export type ST_CalendarType = 'gregorian' | 'gregorianUs' | 'gregorianMeFrench' | 'gregorianArabic' | 'hijri' | 'hebrew' | 'taiwan' | 'japan' | 'thai' | 'korea' | 'saka' | 'gregorianXlitEnglish' | 'gregorianXlitFrench' | 'none';
|
|
21
6
|
export type ST_Guid = string;
|
|
22
7
|
export type ST_OnOff = boolean;
|
|
23
8
|
export type ST_String = string;
|
|
24
9
|
export type ST_XmlName = string;
|
|
25
10
|
export type ST_UnsignedDecimalNumber = number;
|
|
26
11
|
export type ST_TwipsMeasure = ST_UnsignedDecimalNumber | ST_PositiveUniversalMeasure;
|
|
27
|
-
export
|
|
28
|
-
baseline = "baseline",
|
|
29
|
-
superscript = "superscript",
|
|
30
|
-
subscript = "subscript"
|
|
31
|
-
}
|
|
12
|
+
export type ST_VerticalAlignRun = 'baseline' | 'superscript' | 'subscript';
|
|
32
13
|
export type ST_Xstring = string;
|
|
33
|
-
export
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
right = "right",
|
|
37
|
-
inside = "inside",
|
|
38
|
-
outside = "outside"
|
|
39
|
-
}
|
|
40
|
-
export declare enum ST_YAlign {
|
|
41
|
-
inline = "inline",
|
|
42
|
-
top = "top",
|
|
43
|
-
center = "center",
|
|
44
|
-
bottom = "bottom",
|
|
45
|
-
inside = "inside",
|
|
46
|
-
outside = "outside"
|
|
47
|
-
}
|
|
48
|
-
export declare enum ST_ConformanceClass {
|
|
49
|
-
strict = "strict",
|
|
50
|
-
transitional = "transitional"
|
|
51
|
-
}
|
|
14
|
+
export type ST_XAlign = 'left' | 'center' | 'right' | 'inside' | 'outside';
|
|
15
|
+
export type ST_YAlign = 'inline' | 'top' | 'center' | 'bottom' | 'inside' | 'outside';
|
|
16
|
+
export type ST_ConformanceClass = 'strict' | 'transitional';
|
|
52
17
|
export type ST_UniversalMeasure = string;
|
|
53
18
|
export type ST_PositiveUniversalMeasure = ST_UniversalMeasure;
|
|
54
19
|
export type ST_Percentage = string;
|
|
55
20
|
export type ST_FixedPercentage = ST_Percentage;
|
|
56
21
|
export type ST_PositivePercentage = ST_Percentage;
|
|
57
22
|
export type ST_PositiveFixedPercentage = ST_Percentage;
|
|
58
|
-
export type CT_Empty = any;
|
|
59
|
-
export type CT_OnOff = {
|
|
60
|
-
val?: ST_OnOff;
|
|
61
|
-
};
|
|
62
|
-
export type CT_LongHexNumber = {
|
|
63
|
-
val: ST_LongHexNumber;
|
|
64
|
-
};
|
|
65
|
-
export type CT_Charset = {
|
|
66
|
-
characterSet?: ST_String;
|
|
67
|
-
};
|
|
68
|
-
export type CT_DecimalNumber = {
|
|
69
|
-
val: ST_DecimalNumber;
|
|
70
|
-
};
|
|
71
|
-
export type CT_UnsignedDecimalNumber = {
|
|
72
|
-
val: ST_UnsignedDecimalNumber;
|
|
73
|
-
};
|
|
74
|
-
export type CT_DecimalNumberOrPrecent = {
|
|
75
|
-
val: ST_DecimalNumberOrPercent;
|
|
76
|
-
};
|
|
77
|
-
export type CT_TwipsMeasure = {
|
|
78
|
-
val: ST_TwipsMeasure;
|
|
79
|
-
};
|
|
80
|
-
export type CT_SignedTwipsMeasure = {
|
|
81
|
-
val: ST_SignedTwipsMeasure;
|
|
82
|
-
};
|
|
83
|
-
export type CT_PixelsMeasure = {
|
|
84
|
-
val: ST_PixelsMeasure;
|
|
85
|
-
};
|
|
86
|
-
export type CT_HpsMeasure = {
|
|
87
|
-
val: ST_HpsMeasure;
|
|
88
|
-
};
|
|
89
|
-
export type CT_SignedHpsMeasure = {
|
|
90
|
-
val: ST_SignedHpsMeasure;
|
|
91
|
-
};
|
|
92
|
-
export type CT_MacroName = {
|
|
93
|
-
val: ST_MacroName;
|
|
94
|
-
};
|
|
95
|
-
export type CT_String = {
|
|
96
|
-
val: ST_String;
|
|
97
|
-
};
|
|
98
|
-
export type CT_TextScale = {
|
|
99
|
-
val?: ST_TextScale;
|
|
100
|
-
};
|
|
101
|
-
export type CT_Highlight = {
|
|
102
|
-
val: ST_HighlightColor;
|
|
103
|
-
};
|
|
104
|
-
export type CT_Color = {
|
|
105
|
-
val: ST_HexColor;
|
|
106
|
-
themeColor?: ST_ThemeColor;
|
|
107
|
-
themeTint?: ST_UcharHexNumber;
|
|
108
|
-
themeShade?: ST_UcharHexNumber;
|
|
109
|
-
};
|
|
110
|
-
export type CT_Lang = {
|
|
111
|
-
val: ST_Lang;
|
|
112
|
-
};
|
|
113
|
-
export type CT_Guid = {
|
|
114
|
-
val?: ST_Guid;
|
|
115
|
-
};
|
|
116
|
-
export type CT_Underline = {
|
|
117
|
-
val?: ST_Underline;
|
|
118
|
-
color?: ST_HexColor;
|
|
119
|
-
themeColor?: ST_ThemeColor;
|
|
120
|
-
themeTint?: ST_UcharHexNumber;
|
|
121
|
-
themeShade?: ST_UcharHexNumber;
|
|
122
|
-
};
|
|
123
|
-
export type CT_TextEffect = {
|
|
124
|
-
val: ST_TextEffect;
|
|
125
|
-
};
|
|
126
|
-
export type CT_Border = {
|
|
127
|
-
val: ST_Border;
|
|
128
|
-
color?: ST_HexColor;
|
|
129
|
-
themeColor?: ST_ThemeColor;
|
|
130
|
-
themeTint?: ST_UcharHexNumber;
|
|
131
|
-
themeShade?: ST_UcharHexNumber;
|
|
132
|
-
sz?: ST_EighthPointMeasure;
|
|
133
|
-
space?: ST_PointMeasure;
|
|
134
|
-
shadow?: ST_OnOff;
|
|
135
|
-
frame?: ST_OnOff;
|
|
136
|
-
};
|
|
137
|
-
export type CT_Shd = {
|
|
138
|
-
val: ST_Shd;
|
|
139
|
-
color?: ST_HexColor;
|
|
140
|
-
themeColor?: ST_ThemeColor;
|
|
141
|
-
themeTint?: ST_UcharHexNumber;
|
|
142
|
-
themeShade?: ST_UcharHexNumber;
|
|
143
|
-
fill?: ST_HexColor;
|
|
144
|
-
themeFill?: ST_ThemeColor;
|
|
145
|
-
themeFillTint?: ST_UcharHexNumber;
|
|
146
|
-
themeFillShade?: ST_UcharHexNumber;
|
|
147
|
-
};
|
|
148
|
-
export type CT_VerticalAlignRun = {
|
|
149
|
-
val: ST_VerticalAlignRun;
|
|
150
|
-
};
|
|
151
|
-
export type CT_FitText = {
|
|
152
|
-
val: ST_TwipsMeasure;
|
|
153
|
-
id?: ST_DecimalNumber;
|
|
154
|
-
};
|
|
155
|
-
export type CT_Em = {
|
|
156
|
-
val: ST_Em;
|
|
157
|
-
};
|
|
158
|
-
export type CT_Language = {
|
|
159
|
-
val?: ST_Lang;
|
|
160
|
-
eastAsia?: ST_Lang;
|
|
161
|
-
bidi?: ST_Lang;
|
|
162
|
-
};
|
|
163
|
-
export type CT_EastAsianLayout = {
|
|
164
|
-
id?: ST_DecimalNumber;
|
|
165
|
-
combine?: ST_OnOff;
|
|
166
|
-
combineBrackets?: ST_CombineBrackets;
|
|
167
|
-
vert?: ST_OnOff;
|
|
168
|
-
vertCompress?: ST_OnOff;
|
|
169
|
-
};
|
|
170
|
-
export type CT_FramePr = {
|
|
171
|
-
dropCap?: ST_DropCap;
|
|
172
|
-
lines?: ST_DecimalNumber;
|
|
173
|
-
w?: ST_TwipsMeasure;
|
|
174
|
-
h?: ST_TwipsMeasure;
|
|
175
|
-
vSpace?: ST_TwipsMeasure;
|
|
176
|
-
hSpace?: ST_TwipsMeasure;
|
|
177
|
-
wrap?: ST_Wrap;
|
|
178
|
-
hAnchor?: ST_HAnchor;
|
|
179
|
-
vAnchor?: ST_VAnchor;
|
|
180
|
-
x?: ST_SignedTwipsMeasure;
|
|
181
|
-
xAlign?: ST_XAlign;
|
|
182
|
-
y?: ST_SignedTwipsMeasure;
|
|
183
|
-
yAlign?: ST_YAlign;
|
|
184
|
-
hRule?: ST_HeightRule;
|
|
185
|
-
anchorLock?: ST_OnOff;
|
|
186
|
-
};
|
|
187
|
-
export type CT_TabStop = {
|
|
188
|
-
val: ST_TabJc;
|
|
189
|
-
leader?: ST_TabTlc;
|
|
190
|
-
pos: ST_SignedTwipsMeasure;
|
|
191
|
-
};
|
|
192
|
-
export type CT_Spacing = {
|
|
193
|
-
before?: ST_TwipsMeasure;
|
|
194
|
-
beforeLines?: ST_DecimalNumber;
|
|
195
|
-
beforeAutospacing?: ST_OnOff;
|
|
196
|
-
after?: ST_TwipsMeasure;
|
|
197
|
-
afterLines?: ST_DecimalNumber;
|
|
198
|
-
afterAutospacing?: ST_OnOff;
|
|
199
|
-
line?: ST_SignedTwipsMeasure;
|
|
200
|
-
lineRule?: ST_LineSpacingRule;
|
|
201
|
-
};
|
|
202
|
-
export type CT_Ind = {
|
|
203
|
-
start?: ST_SignedTwipsMeasure;
|
|
204
|
-
startChars?: ST_DecimalNumber;
|
|
205
|
-
end?: ST_SignedTwipsMeasure;
|
|
206
|
-
endChars?: ST_DecimalNumber;
|
|
207
|
-
hanging?: ST_TwipsMeasure;
|
|
208
|
-
hangingChars?: ST_DecimalNumber;
|
|
209
|
-
firstLine?: ST_TwipsMeasure;
|
|
210
|
-
firstLineChars?: ST_DecimalNumber;
|
|
211
|
-
};
|
|
212
|
-
export type CT_Jc = {
|
|
213
|
-
val: ST_Jc;
|
|
214
|
-
};
|
|
215
|
-
export type CT_JcTable = {
|
|
216
|
-
val: ST_JcTable;
|
|
217
|
-
};
|
|
218
|
-
export type CT_View = {
|
|
219
|
-
val: ST_View;
|
|
220
|
-
};
|
|
221
|
-
export type CT_Zoom = {
|
|
222
|
-
val?: ST_Zoom;
|
|
223
|
-
percent: ST_DecimalNumberOrPercent;
|
|
224
|
-
};
|
|
225
|
-
export type CT_WritingStyle = {
|
|
226
|
-
lang: ST_Lang;
|
|
227
|
-
vendorID: ST_String;
|
|
228
|
-
dllVersion: ST_String;
|
|
229
|
-
nlCheck?: ST_OnOff;
|
|
230
|
-
checkStyle: ST_OnOff;
|
|
231
|
-
appName: ST_String;
|
|
232
|
-
};
|
|
233
|
-
export type CT_Proof = {
|
|
234
|
-
spelling?: ST_Proof;
|
|
235
|
-
grammar?: ST_Proof;
|
|
236
|
-
};
|
|
237
|
-
export type CT_DocType = {
|
|
238
|
-
val: ST_DocType;
|
|
239
|
-
};
|
|
240
|
-
export type CT_DocProtect = {
|
|
241
|
-
edit?: ST_DocProtect;
|
|
242
|
-
formatting?: ST_OnOff;
|
|
243
|
-
enforcement?: ST_OnOff;
|
|
244
|
-
};
|
|
245
|
-
export type CT_MailMergeDocType = {
|
|
246
|
-
val: ST_MailMergeDocType;
|
|
247
|
-
};
|
|
248
|
-
export type CT_MailMergeDataType = {
|
|
249
|
-
val: ST_MailMergeDataType;
|
|
250
|
-
};
|
|
251
|
-
export type CT_MailMergeDest = {
|
|
252
|
-
val: ST_MailMergeDest;
|
|
253
|
-
};
|
|
254
|
-
export type CT_MailMergeOdsoFMDFieldType = {
|
|
255
|
-
val: ST_MailMergeOdsoFMDFieldType;
|
|
256
|
-
};
|
|
257
|
-
export type CT_TrackChangesView = {
|
|
258
|
-
markup?: ST_OnOff;
|
|
259
|
-
comments?: ST_OnOff;
|
|
260
|
-
insDel?: ST_OnOff;
|
|
261
|
-
formatting?: ST_OnOff;
|
|
262
|
-
inkAnnotations?: ST_OnOff;
|
|
263
|
-
};
|
|
264
|
-
export type CT_Kinsoku = {
|
|
265
|
-
lang: ST_Lang;
|
|
266
|
-
val: ST_String;
|
|
267
|
-
};
|
|
268
|
-
export type CT_TextDirection = {
|
|
269
|
-
val: ST_TextDirection;
|
|
270
|
-
};
|
|
271
|
-
export type CT_TextAlignment = {
|
|
272
|
-
val: ST_TextAlignment;
|
|
273
|
-
};
|
|
274
|
-
export type CT_Markup = {
|
|
275
|
-
id: ST_DecimalNumber;
|
|
276
|
-
};
|
|
277
|
-
export type CT_TrackChange = CT_Markup & {
|
|
278
|
-
author: ST_String;
|
|
279
|
-
date?: ST_DateTime;
|
|
280
|
-
};
|
|
281
|
-
export type CT_CellMergeTrackChange = CT_TrackChange & {
|
|
282
|
-
vMerge?: ST_AnnotationVMerge;
|
|
283
|
-
vMergeOrig?: ST_AnnotationVMerge;
|
|
284
|
-
};
|
|
285
|
-
export type CT_TrackChangeRange = CT_TrackChange & {
|
|
286
|
-
displacedByCustomXml?: ST_DisplacedByCustomXml;
|
|
287
|
-
};
|
|
288
|
-
export type CT_MarkupRange = CT_Markup & {
|
|
289
|
-
displacedByCustomXml?: ST_DisplacedByCustomXml;
|
|
290
|
-
};
|
|
291
|
-
export type CT_BookmarkRange = CT_MarkupRange & {
|
|
292
|
-
colFirst?: ST_DecimalNumber;
|
|
293
|
-
colLast?: ST_DecimalNumber;
|
|
294
|
-
};
|
|
295
|
-
export type CT_Bookmark = CT_BookmarkRange & {
|
|
296
|
-
name: ST_String;
|
|
297
|
-
};
|
|
298
|
-
export type CT_MoveBookmark = CT_Bookmark & {
|
|
299
|
-
author: ST_String;
|
|
300
|
-
date: ST_DateTime;
|
|
301
|
-
};
|
|
302
|
-
export type CT_Comment = CT_TrackChange & {
|
|
303
|
-
initials?: ST_String;
|
|
304
|
-
};
|
|
305
|
-
export type CT_TblPrExChange = CT_TrackChange;
|
|
306
|
-
export type CT_TcPrChange = CT_TrackChange;
|
|
307
|
-
export type CT_TrPrChange = CT_TrackChange;
|
|
308
|
-
export type CT_TblGridChange = CT_Markup;
|
|
309
|
-
export type CT_TblPrChange = CT_TrackChange;
|
|
310
|
-
export type CT_SectPrChange = CT_TrackChange;
|
|
311
|
-
export type CT_PPrChange = CT_TrackChange;
|
|
312
|
-
export type CT_RPrChange = CT_TrackChange;
|
|
313
|
-
export type CT_ParaRPrChange = CT_TrackChange;
|
|
314
|
-
export type CT_RunTrackChange = CT_TrackChange;
|
|
315
|
-
export type CT_NumPr = {
|
|
316
|
-
ilvl?: CT_DecimalNumber;
|
|
317
|
-
numId?: CT_DecimalNumber;
|
|
318
|
-
ins?: CT_TrackChange;
|
|
319
|
-
};
|
|
320
|
-
export type CT_PBdr = {
|
|
321
|
-
top?: CT_Border;
|
|
322
|
-
left?: CT_Border;
|
|
323
|
-
bottom?: CT_Border;
|
|
324
|
-
right?: CT_Border;
|
|
325
|
-
between?: CT_Border;
|
|
326
|
-
bar?: CT_Border;
|
|
327
|
-
};
|
|
328
|
-
export type CT_Tabs = {
|
|
329
|
-
tab?: CT_TabStop;
|
|
330
|
-
};
|
|
331
|
-
export type CT_TextboxTightWrap = {
|
|
332
|
-
val: ST_TextboxTightWrap;
|
|
333
|
-
};
|
|
334
|
-
export type CT_PPr = CT_PPrBase;
|
|
335
|
-
export type CT_PPrBase = {
|
|
336
|
-
pStyle?: CT_String;
|
|
337
|
-
keepNext?: CT_OnOff;
|
|
338
|
-
keepLines?: CT_OnOff;
|
|
339
|
-
pageBreakBefore?: CT_OnOff;
|
|
340
|
-
framePr?: CT_FramePr;
|
|
341
|
-
widowControl?: CT_OnOff;
|
|
342
|
-
numPr?: CT_NumPr;
|
|
343
|
-
suppressLineNumbers?: CT_OnOff;
|
|
344
|
-
pBdr?: CT_PBdr;
|
|
345
|
-
shd?: CT_Shd;
|
|
346
|
-
tabs?: CT_Tabs;
|
|
347
|
-
suppressAutoHyphens?: CT_OnOff;
|
|
348
|
-
kinsoku?: CT_OnOff;
|
|
349
|
-
wordWrap?: CT_OnOff;
|
|
350
|
-
overflowPunct?: CT_OnOff;
|
|
351
|
-
topLinePunct?: CT_OnOff;
|
|
352
|
-
autoSpaceDE?: CT_OnOff;
|
|
353
|
-
autoSpaceDN?: CT_OnOff;
|
|
354
|
-
bidi?: CT_OnOff;
|
|
355
|
-
adjustRightInd?: CT_OnOff;
|
|
356
|
-
snapToGrid?: CT_OnOff;
|
|
357
|
-
spacing?: CT_Spacing;
|
|
358
|
-
ind?: CT_Ind;
|
|
359
|
-
contextualSpacing?: CT_OnOff;
|
|
360
|
-
mirrorIndents?: CT_OnOff;
|
|
361
|
-
suppressOverlap?: CT_OnOff;
|
|
362
|
-
jc?: CT_Jc;
|
|
363
|
-
textDirection?: CT_TextDirection;
|
|
364
|
-
textAlignment?: CT_TextAlignment;
|
|
365
|
-
textboxTightWrap?: CT_TextboxTightWrap;
|
|
366
|
-
outlineLvl?: CT_DecimalNumber;
|
|
367
|
-
divId?: CT_DecimalNumber;
|
|
368
|
-
cnfStyle?: CT_Cnf;
|
|
369
|
-
};
|
|
370
|
-
export type CT_PPrGeneral = CT_PPrBase;
|
|
371
|
-
export type CT_Control = {
|
|
372
|
-
name?: ST_String;
|
|
373
|
-
shapeid?: ST_String;
|
|
374
|
-
rid?: string;
|
|
375
|
-
};
|
|
376
|
-
export type CT_Background = {
|
|
377
|
-
color?: ST_HexColor;
|
|
378
|
-
themeColor?: ST_ThemeColor;
|
|
379
|
-
themeTint?: ST_UcharHexNumber;
|
|
380
|
-
themeShade?: ST_UcharHexNumber;
|
|
381
|
-
drawing?: CT_Drawing;
|
|
382
|
-
};
|
|
383
|
-
export type CT_Rel = {
|
|
384
|
-
rid: string;
|
|
385
|
-
};
|
|
386
|
-
export type CT_Object = {
|
|
387
|
-
dxaOrig?: ST_TwipsMeasure;
|
|
388
|
-
dyaOrig?: ST_TwipsMeasure;
|
|
389
|
-
drawing?: CT_Drawing;
|
|
390
|
-
};
|
|
391
|
-
export type CT_ObjectEmbed = {
|
|
392
|
-
drawAspect?: ST_ObjectDrawAspect;
|
|
393
|
-
rid: string;
|
|
394
|
-
progId?: ST_String;
|
|
395
|
-
shapeId?: ST_String;
|
|
396
|
-
fieldCodes?: ST_String;
|
|
397
|
-
};
|
|
398
|
-
export type CT_ObjectLink = CT_ObjectEmbed & {
|
|
399
|
-
updateMode: ST_ObjectUpdateMode;
|
|
400
|
-
lockedField?: ST_OnOff;
|
|
401
|
-
};
|
|
402
|
-
export type CT_Drawing = any;
|
|
403
|
-
export type CT_SimpleField = {
|
|
404
|
-
instr: ST_String;
|
|
405
|
-
fldLock?: ST_OnOff;
|
|
406
|
-
dirty?: ST_OnOff;
|
|
407
|
-
};
|
|
408
|
-
export type CT_FFTextType = {
|
|
409
|
-
val: ST_FFTextType;
|
|
410
|
-
};
|
|
411
|
-
export type CT_FFName = {
|
|
412
|
-
val?: ST_FFName;
|
|
413
|
-
};
|
|
414
|
-
export type CT_FldChar = {
|
|
415
|
-
fldCharType: ST_FldCharType;
|
|
416
|
-
fldLock?: ST_OnOff;
|
|
417
|
-
dirty?: ST_OnOff;
|
|
418
|
-
};
|
|
419
|
-
export type CT_Hyperlink = {
|
|
420
|
-
tgtFrame?: ST_String;
|
|
421
|
-
tooltip?: ST_String;
|
|
422
|
-
docLocation?: ST_String;
|
|
423
|
-
history?: ST_OnOff;
|
|
424
|
-
anchor?: ST_String;
|
|
425
|
-
rid?: string;
|
|
426
|
-
};
|
|
427
|
-
export type CT_FFData = any;
|
|
428
|
-
export type CT_FFHelpText = {
|
|
429
|
-
type?: ST_InfoTextType;
|
|
430
|
-
val?: ST_FFHelpTextVal;
|
|
431
|
-
};
|
|
432
|
-
export type CT_FFStatusText = {
|
|
433
|
-
type?: ST_InfoTextType;
|
|
434
|
-
val?: ST_FFStatusTextVal;
|
|
435
|
-
};
|
|
436
|
-
export type CT_FFCheckBox = {
|
|
437
|
-
default?: CT_OnOff;
|
|
438
|
-
checked?: CT_OnOff;
|
|
439
|
-
};
|
|
440
|
-
export type CT_FFDDList = {
|
|
441
|
-
result?: CT_DecimalNumber;
|
|
442
|
-
default?: CT_DecimalNumber;
|
|
443
|
-
listEntry?: CT_String;
|
|
444
|
-
};
|
|
445
|
-
export type CT_FFTextInput = {
|
|
446
|
-
type?: CT_FFTextType;
|
|
447
|
-
default?: CT_String;
|
|
448
|
-
maxLength?: CT_DecimalNumber;
|
|
449
|
-
format?: CT_String;
|
|
450
|
-
};
|
|
451
|
-
export type CT_SectType = {
|
|
452
|
-
val?: ST_SectionMark;
|
|
453
|
-
};
|
|
454
|
-
export type CT_PaperSource = {
|
|
455
|
-
first?: ST_DecimalNumber;
|
|
456
|
-
other?: ST_DecimalNumber;
|
|
457
|
-
};
|
|
458
|
-
export type CT_PageSz = {
|
|
459
|
-
w?: ST_TwipsMeasure;
|
|
460
|
-
h?: ST_TwipsMeasure;
|
|
461
|
-
orient?: ST_PageOrientation;
|
|
462
|
-
code?: ST_DecimalNumber;
|
|
463
|
-
};
|
|
464
|
-
export type CT_PageMar = {
|
|
465
|
-
top: ST_SignedTwipsMeasure;
|
|
466
|
-
right: ST_TwipsMeasure;
|
|
467
|
-
bottom: ST_SignedTwipsMeasure;
|
|
468
|
-
left: ST_TwipsMeasure;
|
|
469
|
-
header: ST_TwipsMeasure;
|
|
470
|
-
footer: ST_TwipsMeasure;
|
|
471
|
-
gutter: ST_TwipsMeasure;
|
|
472
|
-
};
|
|
473
|
-
export type CT_PageBorders = {
|
|
474
|
-
zOrder?: ST_PageBorderZOrder;
|
|
475
|
-
display?: ST_PageBorderDisplay;
|
|
476
|
-
offsetFrom?: ST_PageBorderOffset;
|
|
477
|
-
top?: CT_TopPageBorder;
|
|
478
|
-
left?: CT_PageBorder;
|
|
479
|
-
bottom?: CT_BottomPageBorder;
|
|
480
|
-
right?: CT_PageBorder;
|
|
481
|
-
};
|
|
482
|
-
export type CT_PageBorder = CT_Border & {
|
|
483
|
-
rid?: string;
|
|
484
|
-
};
|
|
485
|
-
export type CT_BottomPageBorder = CT_PageBorder & {
|
|
486
|
-
rbottomLeft?: string;
|
|
487
|
-
rbottomRight?: string;
|
|
488
|
-
};
|
|
489
|
-
export type CT_TopPageBorder = CT_PageBorder & {
|
|
490
|
-
rtopLeft?: string;
|
|
491
|
-
rtopRight?: string;
|
|
492
|
-
};
|
|
493
|
-
export type CT_LineNumber = {
|
|
494
|
-
countBy?: ST_DecimalNumber;
|
|
495
|
-
start?: ST_DecimalNumber;
|
|
496
|
-
distance?: ST_TwipsMeasure;
|
|
497
|
-
restart?: ST_LineNumberRestart;
|
|
498
|
-
};
|
|
499
|
-
export type CT_PageNumber = {
|
|
500
|
-
fmt?: ST_NumberFormat;
|
|
501
|
-
start?: ST_DecimalNumber;
|
|
502
|
-
chapStyle?: ST_DecimalNumber;
|
|
503
|
-
chapSep?: ST_ChapterSep;
|
|
504
|
-
};
|
|
505
|
-
export type CT_Column = {
|
|
506
|
-
w?: ST_TwipsMeasure;
|
|
507
|
-
space?: ST_TwipsMeasure;
|
|
508
|
-
};
|
|
509
|
-
export type CT_Columns = {
|
|
510
|
-
equalWidth?: ST_OnOff;
|
|
511
|
-
space?: ST_TwipsMeasure;
|
|
512
|
-
num?: ST_DecimalNumber;
|
|
513
|
-
sep?: ST_OnOff;
|
|
514
|
-
col?: CT_Column;
|
|
515
|
-
};
|
|
516
|
-
export type CT_VerticalJc = {
|
|
517
|
-
val: ST_VerticalJc;
|
|
518
|
-
};
|
|
519
|
-
export type CT_DocGrid = {
|
|
520
|
-
type?: ST_DocGrid;
|
|
521
|
-
linePitch?: ST_DecimalNumber;
|
|
522
|
-
charSpace?: ST_DecimalNumber;
|
|
523
|
-
};
|
|
524
|
-
export type CT_HdrFtrRef = CT_Rel & {
|
|
525
|
-
type: ST_HdrFtr;
|
|
526
|
-
};
|
|
527
|
-
export type CT_HdrFtr = any;
|
|
528
|
-
export type CT_SectPrBase = any;
|
|
529
|
-
export type CT_SectPr = {
|
|
530
|
-
sectPrChange?: CT_SectPrChange;
|
|
531
|
-
};
|
|
532
|
-
export type CT_Br = {
|
|
533
|
-
type?: ST_BrType;
|
|
534
|
-
clear?: ST_BrClear;
|
|
535
|
-
};
|
|
536
|
-
export type CT_PTab = {
|
|
537
|
-
alignment: ST_PTabAlignment;
|
|
538
|
-
relativeTo: ST_PTabRelativeTo;
|
|
539
|
-
leader: ST_PTabLeader;
|
|
540
|
-
};
|
|
541
|
-
export type CT_Sym = {
|
|
542
|
-
font?: ST_String;
|
|
543
|
-
char?: ST_ShortHexNumber;
|
|
544
|
-
};
|
|
545
|
-
export type CT_ProofErr = {
|
|
546
|
-
type: ST_ProofErr;
|
|
547
|
-
};
|
|
548
|
-
export type CT_Perm = {
|
|
549
|
-
id: ST_String;
|
|
550
|
-
displacedByCustomXml?: ST_DisplacedByCustomXml;
|
|
551
|
-
};
|
|
552
|
-
export type CT_PermStart = CT_Perm & {
|
|
553
|
-
edGrp?: ST_EdGrp;
|
|
554
|
-
ed?: ST_String;
|
|
555
|
-
colFirst?: ST_DecimalNumber;
|
|
556
|
-
colLast?: ST_DecimalNumber;
|
|
557
|
-
};
|
|
558
|
-
export type CT_Text = any;
|
|
559
|
-
export type CT_R = {
|
|
560
|
-
rsidRPr?: ST_LongHexNumber;
|
|
561
|
-
rsidDel?: ST_LongHexNumber;
|
|
562
|
-
rsidR?: ST_LongHexNumber;
|
|
563
|
-
};
|
|
564
|
-
export type CT_Fonts = {
|
|
565
|
-
hint?: ST_Hint;
|
|
566
|
-
ascii?: ST_String;
|
|
567
|
-
hAnsi?: ST_String;
|
|
568
|
-
eastAsia?: ST_String;
|
|
569
|
-
cs?: ST_String;
|
|
570
|
-
asciiTheme?: ST_Theme;
|
|
571
|
-
hAnsiTheme?: ST_Theme;
|
|
572
|
-
eastAsiaTheme?: ST_Theme;
|
|
573
|
-
cstheme?: ST_Theme;
|
|
574
|
-
};
|
|
575
|
-
export type CT_RPr = any;
|
|
576
|
-
export type CT_MathCtrlIns = CT_TrackChange;
|
|
577
|
-
export type CT_MathCtrlDel = CT_TrackChange;
|
|
578
|
-
export type CT_RPrOriginal = any;
|
|
579
|
-
export type CT_ParaRPrOriginal = any;
|
|
580
|
-
export type CT_ParaRPr = {
|
|
581
|
-
rPrChange?: CT_ParaRPrChange;
|
|
582
|
-
};
|
|
583
|
-
export type CT_AltChunk = {
|
|
584
|
-
rid?: string;
|
|
585
|
-
altChunkPr?: CT_AltChunkPr;
|
|
586
|
-
};
|
|
587
|
-
export type CT_AltChunkPr = {
|
|
588
|
-
matchSrc?: CT_OnOff;
|
|
589
|
-
};
|
|
590
|
-
export type CT_RubyAlign = {
|
|
591
|
-
val: ST_RubyAlign;
|
|
592
|
-
};
|
|
593
|
-
export type CT_RubyPr = {
|
|
594
|
-
rubyAlign?: CT_RubyAlign;
|
|
595
|
-
hps?: CT_HpsMeasure;
|
|
596
|
-
hpsRaise?: CT_HpsMeasure;
|
|
597
|
-
hpsBaseText?: CT_HpsMeasure;
|
|
598
|
-
lid?: CT_Lang;
|
|
599
|
-
dirty?: CT_OnOff;
|
|
600
|
-
};
|
|
601
|
-
export type CT_RubyContent = any;
|
|
602
|
-
export type CT_Ruby = {
|
|
603
|
-
rubyPr?: CT_RubyPr;
|
|
604
|
-
rt?: CT_RubyContent;
|
|
605
|
-
rubyBase?: CT_RubyContent;
|
|
606
|
-
};
|
|
607
|
-
export type CT_Lock = {
|
|
608
|
-
val?: ST_Lock;
|
|
609
|
-
};
|
|
610
|
-
export type CT_SdtListItem = {
|
|
611
|
-
displayText?: ST_String;
|
|
612
|
-
value?: ST_String;
|
|
613
|
-
};
|
|
614
|
-
export type CT_SdtDateMappingType = {
|
|
615
|
-
val?: ST_SdtDateMappingType;
|
|
616
|
-
};
|
|
617
|
-
export type CT_CalendarType = {
|
|
618
|
-
val?: ST_CalendarType;
|
|
619
|
-
};
|
|
620
|
-
export type CT_SdtDate = {
|
|
621
|
-
fullDate?: ST_DateTime;
|
|
622
|
-
dateFormat?: CT_String;
|
|
623
|
-
lid?: CT_Lang;
|
|
624
|
-
storeMappedDataAs?: CT_SdtDateMappingType;
|
|
625
|
-
calendar?: CT_CalendarType;
|
|
626
|
-
};
|
|
627
|
-
export type CT_SdtComboBox = {
|
|
628
|
-
lastValue?: ST_String;
|
|
629
|
-
listItem?: CT_SdtListItem;
|
|
630
|
-
};
|
|
631
|
-
export type CT_SdtDocPart = {
|
|
632
|
-
docPartGallery?: CT_String;
|
|
633
|
-
docPartCategory?: CT_String;
|
|
634
|
-
docPartUnique?: CT_OnOff;
|
|
635
|
-
};
|
|
636
|
-
export type CT_SdtDropDownList = {
|
|
637
|
-
lastValue?: ST_String;
|
|
638
|
-
listItem?: CT_SdtListItem;
|
|
639
|
-
};
|
|
640
|
-
export type CT_Placeholder = {
|
|
641
|
-
docPart?: CT_String;
|
|
642
|
-
};
|
|
643
|
-
export type CT_SdtText = {
|
|
644
|
-
multiLine?: ST_OnOff;
|
|
645
|
-
};
|
|
646
|
-
export type CT_DataBinding = {
|
|
647
|
-
prefixMappings?: ST_String;
|
|
648
|
-
xpath: ST_String;
|
|
649
|
-
storeItemID: ST_String;
|
|
650
|
-
};
|
|
651
|
-
export type CT_SdtPr = {
|
|
652
|
-
rPr?: CT_RPr;
|
|
653
|
-
alias?: CT_String;
|
|
654
|
-
tag?: CT_String;
|
|
655
|
-
id?: CT_DecimalNumber;
|
|
656
|
-
lock?: CT_Lock;
|
|
657
|
-
placeholder?: CT_Placeholder;
|
|
658
|
-
temporary?: CT_OnOff;
|
|
659
|
-
showingPlcHdr?: CT_OnOff;
|
|
660
|
-
dataBinding?: CT_DataBinding;
|
|
661
|
-
label?: CT_DecimalNumber;
|
|
662
|
-
tabIndex?: CT_UnsignedDecimalNumber;
|
|
663
|
-
};
|
|
664
|
-
export type CT_SdtEndPr = any;
|
|
665
|
-
export type CT_DirContentRun = {
|
|
666
|
-
val?: ST_Direction;
|
|
667
|
-
};
|
|
668
|
-
export type CT_BdoContentRun = {
|
|
669
|
-
val?: ST_Direction;
|
|
670
|
-
};
|
|
671
|
-
export type CT_SdtContentRun = any;
|
|
672
|
-
export type CT_SdtContentBlock = any;
|
|
673
|
-
export type CT_SdtContentRow = any;
|
|
674
|
-
export type CT_SdtContentCell = any;
|
|
675
|
-
export type CT_SdtBlock = {
|
|
676
|
-
sdtPr?: CT_SdtPr;
|
|
677
|
-
sdtEndPr?: CT_SdtEndPr;
|
|
678
|
-
sdtContent?: CT_SdtContentBlock;
|
|
679
|
-
};
|
|
680
|
-
export type CT_SdtRun = {
|
|
681
|
-
sdtPr?: CT_SdtPr;
|
|
682
|
-
sdtEndPr?: CT_SdtEndPr;
|
|
683
|
-
sdtContent?: CT_SdtContentRun;
|
|
684
|
-
};
|
|
685
|
-
export type CT_SdtCell = {
|
|
686
|
-
sdtPr?: CT_SdtPr;
|
|
687
|
-
sdtEndPr?: CT_SdtEndPr;
|
|
688
|
-
sdtContent?: CT_SdtContentCell;
|
|
689
|
-
};
|
|
690
|
-
export type CT_SdtRow = {
|
|
691
|
-
sdtPr?: CT_SdtPr;
|
|
692
|
-
sdtEndPr?: CT_SdtEndPr;
|
|
693
|
-
sdtContent?: CT_SdtContentRow;
|
|
694
|
-
};
|
|
695
|
-
export type CT_Attr = {
|
|
696
|
-
uri?: ST_String;
|
|
697
|
-
name: ST_String;
|
|
698
|
-
val: ST_String;
|
|
699
|
-
};
|
|
700
|
-
export type CT_CustomXmlRun = {
|
|
701
|
-
uri?: ST_String;
|
|
702
|
-
element: ST_XmlName;
|
|
703
|
-
customXmlPr?: CT_CustomXmlPr;
|
|
704
|
-
};
|
|
705
|
-
export type CT_SmartTagRun = {
|
|
706
|
-
uri?: ST_String;
|
|
707
|
-
element: ST_XmlName;
|
|
708
|
-
smartTagPr?: CT_SmartTagPr;
|
|
709
|
-
};
|
|
710
|
-
export type CT_CustomXmlBlock = {
|
|
711
|
-
uri?: ST_String;
|
|
712
|
-
element: ST_XmlName;
|
|
713
|
-
customXmlPr?: CT_CustomXmlPr;
|
|
714
|
-
};
|
|
715
|
-
export type CT_CustomXmlPr = {
|
|
716
|
-
placeholder?: CT_String;
|
|
717
|
-
attr?: CT_Attr;
|
|
718
|
-
};
|
|
719
|
-
export type CT_CustomXmlRow = {
|
|
720
|
-
uri?: ST_String;
|
|
721
|
-
element: ST_XmlName;
|
|
722
|
-
customXmlPr?: CT_CustomXmlPr;
|
|
723
|
-
};
|
|
724
|
-
export type CT_CustomXmlCell = {
|
|
725
|
-
uri?: ST_String;
|
|
726
|
-
element: ST_XmlName;
|
|
727
|
-
customXmlPr?: CT_CustomXmlPr;
|
|
728
|
-
};
|
|
729
|
-
export type CT_SmartTagPr = {
|
|
730
|
-
attr?: CT_Attr;
|
|
731
|
-
};
|
|
732
|
-
export type CT_P = {
|
|
733
|
-
rsidRPr?: ST_LongHexNumber;
|
|
734
|
-
rsidR?: ST_LongHexNumber;
|
|
735
|
-
rsidDel?: ST_LongHexNumber;
|
|
736
|
-
rsidP?: ST_LongHexNumber;
|
|
737
|
-
rsidRDefault?: ST_LongHexNumber;
|
|
738
|
-
pPr?: CT_PPr;
|
|
739
|
-
};
|
|
740
|
-
export type CT_Height = {
|
|
741
|
-
val?: ST_TwipsMeasure;
|
|
742
|
-
hRule?: ST_HeightRule;
|
|
743
|
-
};
|
|
744
|
-
export type CT_TblWidth = {
|
|
745
|
-
w?: ST_MeasurementOrPercent;
|
|
746
|
-
type?: ST_TblWidth;
|
|
747
|
-
};
|
|
748
|
-
export type CT_TblGridCol = {
|
|
749
|
-
w?: ST_TwipsMeasure;
|
|
750
|
-
};
|
|
751
|
-
export type CT_TblGridBase = {
|
|
752
|
-
gridCol?: CT_TblGridCol;
|
|
753
|
-
};
|
|
754
|
-
export type CT_TblGrid = CT_TblGridBase;
|
|
755
|
-
export type CT_TcBorders = {
|
|
756
|
-
top?: CT_Border;
|
|
757
|
-
start?: CT_Border;
|
|
758
|
-
bottom?: CT_Border;
|
|
759
|
-
end?: CT_Border;
|
|
760
|
-
insideH?: CT_Border;
|
|
761
|
-
insideV?: CT_Border;
|
|
762
|
-
tl2br?: CT_Border;
|
|
763
|
-
tr2bl?: CT_Border;
|
|
764
|
-
};
|
|
765
|
-
export type CT_TcMar = {
|
|
766
|
-
top?: CT_TblWidth;
|
|
767
|
-
start?: CT_TblWidth;
|
|
768
|
-
bottom?: CT_TblWidth;
|
|
769
|
-
end?: CT_TblWidth;
|
|
770
|
-
};
|
|
771
|
-
export type CT_VMerge = {
|
|
772
|
-
val?: ST_Merge;
|
|
773
|
-
};
|
|
774
|
-
export type CT_TcPrBase = {
|
|
775
|
-
cnfStyle?: CT_Cnf;
|
|
776
|
-
tcW?: CT_TblWidth;
|
|
777
|
-
gridSpan?: CT_DecimalNumber;
|
|
778
|
-
vMerge?: CT_VMerge;
|
|
779
|
-
tcBorders?: CT_TcBorders;
|
|
780
|
-
shd?: CT_Shd;
|
|
781
|
-
noWrap?: CT_OnOff;
|
|
782
|
-
tcMar?: CT_TcMar;
|
|
783
|
-
textDirection?: CT_TextDirection;
|
|
784
|
-
tcFitText?: CT_OnOff;
|
|
785
|
-
vAlign?: CT_VerticalJc;
|
|
786
|
-
hideMark?: CT_OnOff;
|
|
787
|
-
headers?: CT_Headers;
|
|
788
|
-
};
|
|
789
|
-
export type CT_TcPr = CT_TcPrInner;
|
|
790
|
-
export type CT_TcPrInner = CT_TcPrBase & EG_CellMarkupElements;
|
|
791
|
-
export type CT_Tc = {
|
|
792
|
-
id?: ST_String;
|
|
793
|
-
tcPr?: CT_TcPr;
|
|
794
|
-
};
|
|
795
|
-
export type CT_Cnf = {
|
|
796
|
-
firstRow?: ST_OnOff;
|
|
797
|
-
lastRow?: ST_OnOff;
|
|
798
|
-
firstColumn?: ST_OnOff;
|
|
799
|
-
lastColumn?: ST_OnOff;
|
|
800
|
-
oddVBand?: ST_OnOff;
|
|
801
|
-
evenVBand?: ST_OnOff;
|
|
802
|
-
oddHBand?: ST_OnOff;
|
|
803
|
-
evenHBand?: ST_OnOff;
|
|
804
|
-
firstRowFirstColumn?: ST_OnOff;
|
|
805
|
-
firstRowLastColumn?: ST_OnOff;
|
|
806
|
-
lastRowFirstColumn?: ST_OnOff;
|
|
807
|
-
lastRowLastColumn?: ST_OnOff;
|
|
808
|
-
};
|
|
809
|
-
export type CT_Headers = {
|
|
810
|
-
header?: CT_String;
|
|
811
|
-
};
|
|
812
|
-
export type CT_TrPrBase = any;
|
|
813
|
-
export type CT_TrPr = CT_TrPrBase;
|
|
814
|
-
export type CT_Row = {
|
|
815
|
-
rsidRPr?: ST_LongHexNumber;
|
|
816
|
-
rsidR?: ST_LongHexNumber;
|
|
817
|
-
rsidDel?: ST_LongHexNumber;
|
|
818
|
-
rsidTr?: ST_LongHexNumber;
|
|
819
|
-
tblPrEx?: CT_TblPrEx;
|
|
820
|
-
trPr?: CT_TrPr;
|
|
821
|
-
};
|
|
822
|
-
export type CT_TblLayoutType = {
|
|
823
|
-
type?: ST_TblLayoutType;
|
|
824
|
-
};
|
|
825
|
-
export type CT_TblOverlap = {
|
|
826
|
-
val: ST_TblOverlap;
|
|
827
|
-
};
|
|
828
|
-
export type CT_TblPPr = {
|
|
829
|
-
leftFromText?: ST_TwipsMeasure;
|
|
830
|
-
rightFromText?: ST_TwipsMeasure;
|
|
831
|
-
topFromText?: ST_TwipsMeasure;
|
|
832
|
-
bottomFromText?: ST_TwipsMeasure;
|
|
833
|
-
vertAnchor?: ST_VAnchor;
|
|
834
|
-
horzAnchor?: ST_HAnchor;
|
|
835
|
-
tblpXSpec?: ST_XAlign;
|
|
836
|
-
tblpX?: ST_SignedTwipsMeasure;
|
|
837
|
-
tblpYSpec?: ST_YAlign;
|
|
838
|
-
tblpY?: ST_SignedTwipsMeasure;
|
|
839
|
-
};
|
|
840
|
-
export type CT_TblCellMar = {
|
|
841
|
-
top?: CT_TblWidth;
|
|
842
|
-
start?: CT_TblWidth;
|
|
843
|
-
bottom?: CT_TblWidth;
|
|
844
|
-
end?: CT_TblWidth;
|
|
845
|
-
};
|
|
846
|
-
export type CT_TblBorders = {
|
|
847
|
-
top?: CT_Border;
|
|
848
|
-
start?: CT_Border;
|
|
849
|
-
bottom?: CT_Border;
|
|
850
|
-
end?: CT_Border;
|
|
851
|
-
insideH?: CT_Border;
|
|
852
|
-
insideV?: CT_Border;
|
|
853
|
-
};
|
|
854
|
-
export type CT_TblPrBase = {
|
|
855
|
-
tblStyle?: CT_String;
|
|
856
|
-
tblpPr?: CT_TblPPr;
|
|
857
|
-
tblOverlap?: CT_TblOverlap;
|
|
858
|
-
bidiVisual?: CT_OnOff;
|
|
859
|
-
tblStyleRowBandSize?: CT_DecimalNumber;
|
|
860
|
-
tblStyleColBandSize?: CT_DecimalNumber;
|
|
861
|
-
tblW?: CT_TblWidth;
|
|
862
|
-
jc?: CT_JcTable;
|
|
863
|
-
tblCellSpacing?: CT_TblWidth;
|
|
864
|
-
tblInd?: CT_TblWidth;
|
|
865
|
-
tblBorders?: CT_TblBorders;
|
|
866
|
-
shd?: CT_Shd;
|
|
867
|
-
tblLayout?: CT_TblLayoutType;
|
|
868
|
-
tblCellMar?: CT_TblCellMar;
|
|
869
|
-
tblLook?: CT_TblLook;
|
|
870
|
-
tblCaption?: CT_String;
|
|
871
|
-
tblDescription?: CT_String;
|
|
872
|
-
};
|
|
873
|
-
export type CT_TblPr = CT_TblPrBase;
|
|
874
|
-
export type CT_TblPrExBase = {
|
|
875
|
-
tblW?: CT_TblWidth;
|
|
876
|
-
jc?: CT_JcTable;
|
|
877
|
-
tblCellSpacing?: CT_TblWidth;
|
|
878
|
-
tblInd?: CT_TblWidth;
|
|
879
|
-
tblBorders?: CT_TblBorders;
|
|
880
|
-
shd?: CT_Shd;
|
|
881
|
-
tblLayout?: CT_TblLayoutType;
|
|
882
|
-
tblCellMar?: CT_TblCellMar;
|
|
883
|
-
tblLook?: CT_TblLook;
|
|
884
|
-
};
|
|
885
|
-
export type CT_TblPrEx = CT_TblPrExBase;
|
|
886
|
-
export type CT_Tbl = {
|
|
887
|
-
tblPr?: CT_TblPr;
|
|
888
|
-
tblGrid?: CT_TblGrid;
|
|
889
|
-
};
|
|
890
|
-
export type CT_TblLook = {
|
|
891
|
-
firstRow?: ST_OnOff;
|
|
892
|
-
lastRow?: ST_OnOff;
|
|
893
|
-
firstColumn?: ST_OnOff;
|
|
894
|
-
lastColumn?: ST_OnOff;
|
|
895
|
-
noHBand?: ST_OnOff;
|
|
896
|
-
noVBand?: ST_OnOff;
|
|
897
|
-
};
|
|
898
|
-
export type CT_FtnPos = {
|
|
899
|
-
val: ST_FtnPos;
|
|
900
|
-
};
|
|
901
|
-
export type CT_EdnPos = {
|
|
902
|
-
val: ST_EdnPos;
|
|
903
|
-
};
|
|
904
|
-
export type CT_NumFmt = {
|
|
905
|
-
val: ST_NumberFormat;
|
|
906
|
-
format?: ST_String;
|
|
907
|
-
};
|
|
908
|
-
export type CT_NumRestart = {
|
|
909
|
-
val: ST_RestartNumber;
|
|
910
|
-
};
|
|
911
|
-
export type CT_FtnEdnRef = {
|
|
912
|
-
customMarkFollows?: ST_OnOff;
|
|
913
|
-
id: ST_DecimalNumber;
|
|
914
|
-
};
|
|
915
|
-
export type CT_FtnEdnSepRef = {
|
|
916
|
-
id: ST_DecimalNumber;
|
|
917
|
-
};
|
|
918
|
-
export type CT_FtnEdn = {
|
|
919
|
-
type?: ST_FtnEdn;
|
|
920
|
-
id: ST_DecimalNumber;
|
|
921
|
-
};
|
|
922
|
-
export type CT_FtnProps = {
|
|
923
|
-
pos?: CT_FtnPos;
|
|
924
|
-
numFmt?: CT_NumFmt;
|
|
925
|
-
};
|
|
926
|
-
export type CT_EdnProps = {
|
|
927
|
-
pos?: CT_EdnPos;
|
|
928
|
-
numFmt?: CT_NumFmt;
|
|
929
|
-
};
|
|
930
|
-
export type CT_FtnDocProps = CT_FtnProps;
|
|
931
|
-
export type CT_EdnDocProps = CT_EdnProps;
|
|
932
|
-
export type CT_RecipientData = {
|
|
933
|
-
active?: CT_OnOff;
|
|
934
|
-
column?: CT_DecimalNumber;
|
|
935
|
-
uniqueTag?: CT_Base64Binary;
|
|
936
|
-
};
|
|
937
|
-
export type CT_Base64Binary = {
|
|
938
|
-
val: string;
|
|
939
|
-
};
|
|
940
|
-
export type CT_Recipients = {
|
|
941
|
-
recipientData?: CT_RecipientData;
|
|
942
|
-
};
|
|
943
|
-
export type CT_OdsoFieldMapData = {
|
|
944
|
-
type?: CT_MailMergeOdsoFMDFieldType;
|
|
945
|
-
name?: CT_String;
|
|
946
|
-
mappedName?: CT_String;
|
|
947
|
-
column?: CT_DecimalNumber;
|
|
948
|
-
lid?: CT_Lang;
|
|
949
|
-
dynamicAddress?: CT_OnOff;
|
|
950
|
-
};
|
|
951
|
-
export type CT_MailMergeSourceType = {
|
|
952
|
-
val: ST_MailMergeSourceType;
|
|
953
|
-
};
|
|
954
|
-
export type CT_Odso = {
|
|
955
|
-
udl?: CT_String;
|
|
956
|
-
table?: CT_String;
|
|
957
|
-
src?: CT_Rel;
|
|
958
|
-
colDelim?: CT_DecimalNumber;
|
|
959
|
-
type?: CT_MailMergeSourceType;
|
|
960
|
-
fHdr?: CT_OnOff;
|
|
961
|
-
fieldMapData?: CT_OdsoFieldMapData;
|
|
962
|
-
recipientData?: CT_Rel;
|
|
963
|
-
};
|
|
964
|
-
export type CT_MailMerge = {
|
|
965
|
-
mainDocumentType?: CT_MailMergeDocType;
|
|
966
|
-
linkToQuery?: CT_OnOff;
|
|
967
|
-
dataType?: CT_MailMergeDataType;
|
|
968
|
-
connectString?: CT_String;
|
|
969
|
-
query?: CT_String;
|
|
970
|
-
dataSource?: CT_Rel;
|
|
971
|
-
headerSource?: CT_Rel;
|
|
972
|
-
doNotSuppressBlankLines?: CT_OnOff;
|
|
973
|
-
destination?: CT_MailMergeDest;
|
|
974
|
-
addressFieldName?: CT_String;
|
|
975
|
-
mailSubject?: CT_String;
|
|
976
|
-
mailAsAttachment?: CT_OnOff;
|
|
977
|
-
viewMergedData?: CT_OnOff;
|
|
978
|
-
activeRecord?: CT_DecimalNumber;
|
|
979
|
-
checkErrors?: CT_DecimalNumber;
|
|
980
|
-
odso?: CT_Odso;
|
|
981
|
-
};
|
|
982
|
-
export type CT_TargetScreenSz = {
|
|
983
|
-
val: ST_TargetScreenSz;
|
|
984
|
-
};
|
|
985
|
-
export type CT_Compat = {
|
|
986
|
-
spaceForUL?: CT_OnOff;
|
|
987
|
-
balanceSingleByteDoubleByteWidth?: CT_OnOff;
|
|
988
|
-
doNotLeaveBackslashAlone?: CT_OnOff;
|
|
989
|
-
ulTrailSpace?: CT_OnOff;
|
|
990
|
-
doNotExpandShiftReturn?: CT_OnOff;
|
|
991
|
-
adjustLineHeightInTable?: CT_OnOff;
|
|
992
|
-
applyBreakingRules?: CT_OnOff;
|
|
993
|
-
compatSetting?: CT_CompatSetting;
|
|
994
|
-
};
|
|
995
|
-
export type CT_CompatSetting = {
|
|
996
|
-
name?: ST_String;
|
|
997
|
-
uri?: ST_String;
|
|
998
|
-
val?: ST_String;
|
|
999
|
-
};
|
|
1000
|
-
export type CT_DocVar = {
|
|
1001
|
-
name: ST_String;
|
|
1002
|
-
val: ST_String;
|
|
1003
|
-
};
|
|
1004
|
-
export type CT_DocVars = {
|
|
1005
|
-
docVar?: CT_DocVar;
|
|
1006
|
-
};
|
|
1007
|
-
export type CT_DocRsids = {
|
|
1008
|
-
rsidRoot?: CT_LongHexNumber;
|
|
1009
|
-
rsid?: CT_LongHexNumber;
|
|
1010
|
-
};
|
|
1011
|
-
export type CT_CharacterSpacing = {
|
|
1012
|
-
val: ST_CharacterSpacing;
|
|
1013
|
-
};
|
|
1014
|
-
export type CT_SaveThroughXslt = {
|
|
1015
|
-
rid?: string;
|
|
1016
|
-
solutionID?: ST_String;
|
|
1017
|
-
};
|
|
1018
|
-
export type CT_RPrDefault = {
|
|
1019
|
-
rPr?: CT_RPr;
|
|
1020
|
-
};
|
|
1021
|
-
export type CT_PPrDefault = {
|
|
1022
|
-
pPr?: CT_PPrGeneral;
|
|
1023
|
-
};
|
|
1024
|
-
export type CT_DocDefaults = {
|
|
1025
|
-
rPrDefault?: CT_RPrDefault;
|
|
1026
|
-
pPrDefault?: CT_PPrDefault;
|
|
1027
|
-
};
|
|
1028
|
-
export type CT_ColorSchemeMapping = {
|
|
1029
|
-
bg1?: ST_WmlColorSchemeIndex;
|
|
1030
|
-
t1?: ST_WmlColorSchemeIndex;
|
|
1031
|
-
bg2?: ST_WmlColorSchemeIndex;
|
|
1032
|
-
t2?: ST_WmlColorSchemeIndex;
|
|
1033
|
-
accent1?: ST_WmlColorSchemeIndex;
|
|
1034
|
-
accent2?: ST_WmlColorSchemeIndex;
|
|
1035
|
-
accent3?: ST_WmlColorSchemeIndex;
|
|
1036
|
-
accent4?: ST_WmlColorSchemeIndex;
|
|
1037
|
-
accent5?: ST_WmlColorSchemeIndex;
|
|
1038
|
-
accent6?: ST_WmlColorSchemeIndex;
|
|
1039
|
-
hyperlink?: ST_WmlColorSchemeIndex;
|
|
1040
|
-
followedHyperlink?: ST_WmlColorSchemeIndex;
|
|
1041
|
-
};
|
|
1042
|
-
export type CT_ReadingModeInkLockDown = {
|
|
1043
|
-
actualPg: ST_OnOff;
|
|
1044
|
-
w: ST_PixelsMeasure;
|
|
1045
|
-
h: ST_PixelsMeasure;
|
|
1046
|
-
fontSz: ST_DecimalNumberOrPercent;
|
|
1047
|
-
};
|
|
1048
|
-
export type CT_WriteProtection = {
|
|
1049
|
-
recommended?: ST_OnOff;
|
|
1050
|
-
};
|
|
1051
|
-
export type CT_Settings = {
|
|
1052
|
-
writeProtection?: CT_WriteProtection;
|
|
1053
|
-
view?: CT_View;
|
|
1054
|
-
zoom?: CT_Zoom;
|
|
1055
|
-
removePersonalInformation?: CT_OnOff;
|
|
1056
|
-
removeDateAndTime?: CT_OnOff;
|
|
1057
|
-
doNotDisplayPageBoundaries?: CT_OnOff;
|
|
1058
|
-
displayBackgroundShape?: CT_OnOff;
|
|
1059
|
-
printPostScriptOverText?: CT_OnOff;
|
|
1060
|
-
printFractionalCharacterWidth?: CT_OnOff;
|
|
1061
|
-
printFormsData?: CT_OnOff;
|
|
1062
|
-
embedTrueTypeFonts?: CT_OnOff;
|
|
1063
|
-
embedSystemFonts?: CT_OnOff;
|
|
1064
|
-
saveSubsetFonts?: CT_OnOff;
|
|
1065
|
-
saveFormsData?: CT_OnOff;
|
|
1066
|
-
mirrorMargins?: CT_OnOff;
|
|
1067
|
-
alignBordersAndEdges?: CT_OnOff;
|
|
1068
|
-
bordersDoNotSurroundHeader?: CT_OnOff;
|
|
1069
|
-
bordersDoNotSurroundFooter?: CT_OnOff;
|
|
1070
|
-
gutterAtTop?: CT_OnOff;
|
|
1071
|
-
hideSpellingErrors?: CT_OnOff;
|
|
1072
|
-
hideGrammaticalErrors?: CT_OnOff;
|
|
1073
|
-
activeWritingStyle?: CT_WritingStyle;
|
|
1074
|
-
proofState?: CT_Proof;
|
|
1075
|
-
formsDesign?: CT_OnOff;
|
|
1076
|
-
attachedTemplate?: CT_Rel;
|
|
1077
|
-
linkStyles?: CT_OnOff;
|
|
1078
|
-
stylePaneFormatFilter?: CT_StylePaneFilter;
|
|
1079
|
-
stylePaneSortMethod?: CT_StyleSort;
|
|
1080
|
-
documentType?: CT_DocType;
|
|
1081
|
-
mailMerge?: CT_MailMerge;
|
|
1082
|
-
revisionView?: CT_TrackChangesView;
|
|
1083
|
-
trackRevisions?: CT_OnOff;
|
|
1084
|
-
doNotTrackMoves?: CT_OnOff;
|
|
1085
|
-
doNotTrackFormatting?: CT_OnOff;
|
|
1086
|
-
documentProtection?: CT_DocProtect;
|
|
1087
|
-
autoFormatOverride?: CT_OnOff;
|
|
1088
|
-
styleLockTheme?: CT_OnOff;
|
|
1089
|
-
styleLockQFSet?: CT_OnOff;
|
|
1090
|
-
defaultTabStop?: CT_TwipsMeasure;
|
|
1091
|
-
autoHyphenation?: CT_OnOff;
|
|
1092
|
-
consecutiveHyphenLimit?: CT_DecimalNumber;
|
|
1093
|
-
hyphenationZone?: CT_TwipsMeasure;
|
|
1094
|
-
doNotHyphenateCaps?: CT_OnOff;
|
|
1095
|
-
showEnvelope?: CT_OnOff;
|
|
1096
|
-
summaryLength?: CT_DecimalNumberOrPrecent;
|
|
1097
|
-
clickAndTypeStyle?: CT_String;
|
|
1098
|
-
defaultTableStyle?: CT_String;
|
|
1099
|
-
evenAndOddHeaders?: CT_OnOff;
|
|
1100
|
-
bookFoldRevPrinting?: CT_OnOff;
|
|
1101
|
-
bookFoldPrinting?: CT_OnOff;
|
|
1102
|
-
bookFoldPrintingSheets?: CT_DecimalNumber;
|
|
1103
|
-
drawingGridHorizontalSpacing?: CT_TwipsMeasure;
|
|
1104
|
-
drawingGridVerticalSpacing?: CT_TwipsMeasure;
|
|
1105
|
-
displayHorizontalDrawingGridEvery?: CT_DecimalNumber;
|
|
1106
|
-
displayVerticalDrawingGridEvery?: CT_DecimalNumber;
|
|
1107
|
-
doNotUseMarginsForDrawingGridOrigin?: CT_OnOff;
|
|
1108
|
-
drawingGridHorizontalOrigin?: CT_TwipsMeasure;
|
|
1109
|
-
drawingGridVerticalOrigin?: CT_TwipsMeasure;
|
|
1110
|
-
doNotShadeFormData?: CT_OnOff;
|
|
1111
|
-
noPunctuationKerning?: CT_OnOff;
|
|
1112
|
-
characterSpacingControl?: CT_CharacterSpacing;
|
|
1113
|
-
printTwoOnOne?: CT_OnOff;
|
|
1114
|
-
strictFirstAndLastChars?: CT_OnOff;
|
|
1115
|
-
noLineBreaksAfter?: CT_Kinsoku;
|
|
1116
|
-
noLineBreaksBefore?: CT_Kinsoku;
|
|
1117
|
-
savePreviewPicture?: CT_OnOff;
|
|
1118
|
-
doNotValidateAgainstSchema?: CT_OnOff;
|
|
1119
|
-
saveInvalidXml?: CT_OnOff;
|
|
1120
|
-
ignoreMixedContent?: CT_OnOff;
|
|
1121
|
-
alwaysShowPlaceholderText?: CT_OnOff;
|
|
1122
|
-
doNotDemarcateInvalidXml?: CT_OnOff;
|
|
1123
|
-
saveXmlDataOnly?: CT_OnOff;
|
|
1124
|
-
useXSLTWhenSaving?: CT_OnOff;
|
|
1125
|
-
saveThroughXslt?: CT_SaveThroughXslt;
|
|
1126
|
-
showXMLTags?: CT_OnOff;
|
|
1127
|
-
alwaysMergeEmptyNamespace?: CT_OnOff;
|
|
1128
|
-
updateFields?: CT_OnOff;
|
|
1129
|
-
footnotePr?: CT_FtnDocProps;
|
|
1130
|
-
endnotePr?: CT_EdnDocProps;
|
|
1131
|
-
compat?: CT_Compat;
|
|
1132
|
-
docVars?: CT_DocVars;
|
|
1133
|
-
rsids?: CT_DocRsids;
|
|
1134
|
-
mathPr?: string;
|
|
1135
|
-
attachedSchema?: CT_String;
|
|
1136
|
-
themeFontLang?: CT_Language;
|
|
1137
|
-
clrSchemeMapping?: CT_ColorSchemeMapping;
|
|
1138
|
-
doNotIncludeSubdocsInStats?: CT_OnOff;
|
|
1139
|
-
doNotAutoCompressPictures?: CT_OnOff;
|
|
1140
|
-
forceUpgrade?: CT_Empty;
|
|
1141
|
-
captions?: CT_Captions;
|
|
1142
|
-
readModeInkLockDown?: CT_ReadingModeInkLockDown;
|
|
1143
|
-
smartTagType?: CT_SmartTagType;
|
|
1144
|
-
schemaLibrary?: string;
|
|
1145
|
-
doNotEmbedSmartTags?: CT_OnOff;
|
|
1146
|
-
decimalSymbol?: CT_String;
|
|
1147
|
-
listSeparator?: CT_String;
|
|
1148
|
-
};
|
|
1149
|
-
export type CT_StyleSort = {
|
|
1150
|
-
val: ST_StyleSort;
|
|
1151
|
-
};
|
|
1152
|
-
export type CT_StylePaneFilter = {
|
|
1153
|
-
allStyles?: ST_OnOff;
|
|
1154
|
-
customStyles?: ST_OnOff;
|
|
1155
|
-
latentStyles?: ST_OnOff;
|
|
1156
|
-
stylesInUse?: ST_OnOff;
|
|
1157
|
-
headingStyles?: ST_OnOff;
|
|
1158
|
-
numberingStyles?: ST_OnOff;
|
|
1159
|
-
tableStyles?: ST_OnOff;
|
|
1160
|
-
directFormattingOnRuns?: ST_OnOff;
|
|
1161
|
-
directFormattingOnParagraphs?: ST_OnOff;
|
|
1162
|
-
directFormattingOnNumbering?: ST_OnOff;
|
|
1163
|
-
directFormattingOnTables?: ST_OnOff;
|
|
1164
|
-
clearFormatting?: ST_OnOff;
|
|
1165
|
-
top3HeadingStyles?: ST_OnOff;
|
|
1166
|
-
visibleStyles?: ST_OnOff;
|
|
1167
|
-
alternateStyleNames?: ST_OnOff;
|
|
1168
|
-
};
|
|
1169
|
-
export type CT_WebSettings = {
|
|
1170
|
-
frameset?: CT_Frameset;
|
|
1171
|
-
divs?: CT_Divs;
|
|
1172
|
-
encoding?: CT_String;
|
|
1173
|
-
optimizeForBrowser?: CT_OptimizeForBrowser;
|
|
1174
|
-
allowPNG?: CT_OnOff;
|
|
1175
|
-
doNotRelyOnCSS?: CT_OnOff;
|
|
1176
|
-
doNotSaveAsSingleFile?: CT_OnOff;
|
|
1177
|
-
doNotOrganizeInFolder?: CT_OnOff;
|
|
1178
|
-
doNotUseLongFileNames?: CT_OnOff;
|
|
1179
|
-
pixelsPerInch?: CT_DecimalNumber;
|
|
1180
|
-
targetScreenSz?: CT_TargetScreenSz;
|
|
1181
|
-
saveSmartTagsAsXml?: CT_OnOff;
|
|
1182
|
-
};
|
|
1183
|
-
export type CT_FrameScrollbar = {
|
|
1184
|
-
val: ST_FrameScrollbar;
|
|
1185
|
-
};
|
|
1186
|
-
export type CT_OptimizeForBrowser = CT_OnOff & {
|
|
1187
|
-
target?: ST_String;
|
|
1188
|
-
};
|
|
1189
|
-
export type CT_Frame = {
|
|
1190
|
-
sz?: CT_String;
|
|
1191
|
-
name?: CT_String;
|
|
1192
|
-
title?: CT_String;
|
|
1193
|
-
longDesc?: CT_Rel;
|
|
1194
|
-
sourceFileName?: CT_Rel;
|
|
1195
|
-
marW?: CT_PixelsMeasure;
|
|
1196
|
-
marH?: CT_PixelsMeasure;
|
|
1197
|
-
scrollbar?: CT_FrameScrollbar;
|
|
1198
|
-
noResizeAllowed?: CT_OnOff;
|
|
1199
|
-
linkedToFile?: CT_OnOff;
|
|
1200
|
-
};
|
|
1201
|
-
export type CT_FrameLayout = {
|
|
1202
|
-
val: ST_FrameLayout;
|
|
1203
|
-
};
|
|
1204
|
-
export type CT_FramesetSplitbar = {
|
|
1205
|
-
w?: CT_TwipsMeasure;
|
|
1206
|
-
color?: CT_Color;
|
|
1207
|
-
noBorder?: CT_OnOff;
|
|
1208
|
-
flatBorders?: CT_OnOff;
|
|
1209
|
-
};
|
|
1210
|
-
export type CT_Frameset = {
|
|
1211
|
-
sz?: CT_String;
|
|
1212
|
-
framesetSplitbar?: CT_FramesetSplitbar;
|
|
1213
|
-
frameLayout?: CT_FrameLayout;
|
|
1214
|
-
title?: CT_String;
|
|
1215
|
-
};
|
|
1216
|
-
export type CT_NumPicBullet = {
|
|
1217
|
-
numPicBulletId: ST_DecimalNumber;
|
|
1218
|
-
};
|
|
1219
|
-
export type CT_LevelSuffix = {
|
|
1220
|
-
val: ST_LevelSuffix;
|
|
1221
|
-
};
|
|
1222
|
-
export type CT_LevelText = {
|
|
1223
|
-
val?: ST_String;
|
|
1224
|
-
null?: ST_OnOff;
|
|
1225
|
-
};
|
|
1226
|
-
export type CT_Lvl = {
|
|
1227
|
-
ilvl: ST_DecimalNumber;
|
|
1228
|
-
tplc?: ST_LongHexNumber;
|
|
1229
|
-
tentative?: ST_OnOff;
|
|
1230
|
-
start?: CT_DecimalNumber;
|
|
1231
|
-
numFmt?: CT_NumFmt;
|
|
1232
|
-
lvlRestart?: CT_DecimalNumber;
|
|
1233
|
-
pStyle?: CT_String;
|
|
1234
|
-
isLgl?: CT_OnOff;
|
|
1235
|
-
suff?: CT_LevelSuffix;
|
|
1236
|
-
lvlText?: CT_LevelText;
|
|
1237
|
-
lvlPicBulletId?: CT_DecimalNumber;
|
|
1238
|
-
lvlJc?: CT_Jc;
|
|
1239
|
-
pPr?: CT_PPrGeneral;
|
|
1240
|
-
rPr?: CT_RPr;
|
|
1241
|
-
};
|
|
1242
|
-
export type CT_MultiLevelType = {
|
|
1243
|
-
val: ST_MultiLevelType;
|
|
1244
|
-
};
|
|
1245
|
-
export type CT_AbstractNum = {
|
|
1246
|
-
abstractNumId: ST_DecimalNumber;
|
|
1247
|
-
nsid?: CT_LongHexNumber;
|
|
1248
|
-
multiLevelType?: CT_MultiLevelType;
|
|
1249
|
-
tmpl?: CT_LongHexNumber;
|
|
1250
|
-
name?: CT_String;
|
|
1251
|
-
styleLink?: CT_String;
|
|
1252
|
-
numStyleLink?: CT_String;
|
|
1253
|
-
lvl?: CT_Lvl;
|
|
1254
|
-
};
|
|
1255
|
-
export type CT_NumLvl = {
|
|
1256
|
-
ilvl: ST_DecimalNumber;
|
|
1257
|
-
startOverride?: CT_DecimalNumber;
|
|
1258
|
-
lvl?: CT_Lvl;
|
|
1259
|
-
};
|
|
1260
|
-
export type CT_Num = {
|
|
1261
|
-
numId: ST_DecimalNumber;
|
|
1262
|
-
abstractNumId?: CT_DecimalNumber;
|
|
1263
|
-
lvlOverride?: CT_NumLvl;
|
|
1264
|
-
};
|
|
1265
|
-
export type CT_Numbering = {
|
|
1266
|
-
numPicBullet?: CT_NumPicBullet;
|
|
1267
|
-
abstractNum?: CT_AbstractNum;
|
|
1268
|
-
num?: CT_Num;
|
|
1269
|
-
numIdMacAtCleanup?: CT_DecimalNumber;
|
|
1270
|
-
};
|
|
1271
|
-
export type CT_TblStylePr = {
|
|
1272
|
-
type: ST_TblStyleOverrideType;
|
|
1273
|
-
pPr?: CT_PPrGeneral;
|
|
1274
|
-
rPr?: CT_RPr;
|
|
1275
|
-
tblPr?: CT_TblPrBase;
|
|
1276
|
-
trPr?: CT_TrPr;
|
|
1277
|
-
tcPr?: CT_TcPr;
|
|
1278
|
-
};
|
|
1279
|
-
export type CT_Style = {
|
|
1280
|
-
type?: ST_StyleType;
|
|
1281
|
-
styleId?: ST_String;
|
|
1282
|
-
default?: ST_OnOff;
|
|
1283
|
-
customStyle?: ST_OnOff;
|
|
1284
|
-
name?: CT_String;
|
|
1285
|
-
aliases?: CT_String;
|
|
1286
|
-
basedOn?: CT_String;
|
|
1287
|
-
next?: CT_String;
|
|
1288
|
-
link?: CT_String;
|
|
1289
|
-
autoRedefine?: CT_OnOff;
|
|
1290
|
-
hidden?: CT_OnOff;
|
|
1291
|
-
uiPriority?: CT_DecimalNumber;
|
|
1292
|
-
semiHidden?: CT_OnOff;
|
|
1293
|
-
unhideWhenUsed?: CT_OnOff;
|
|
1294
|
-
qFormat?: CT_OnOff;
|
|
1295
|
-
locked?: CT_OnOff;
|
|
1296
|
-
personal?: CT_OnOff;
|
|
1297
|
-
personalCompose?: CT_OnOff;
|
|
1298
|
-
personalReply?: CT_OnOff;
|
|
1299
|
-
rsid?: CT_LongHexNumber;
|
|
1300
|
-
pPr?: CT_PPrGeneral;
|
|
1301
|
-
rPr?: CT_RPr;
|
|
1302
|
-
tblPr?: CT_TblPrBase;
|
|
1303
|
-
trPr?: CT_TrPr;
|
|
1304
|
-
tcPr?: CT_TcPr;
|
|
1305
|
-
tblStylePr?: CT_TblStylePr;
|
|
1306
|
-
};
|
|
1307
|
-
export type CT_LsdException = {
|
|
1308
|
-
name: ST_String;
|
|
1309
|
-
locked?: ST_OnOff;
|
|
1310
|
-
uiPriority?: ST_DecimalNumber;
|
|
1311
|
-
semiHidden?: ST_OnOff;
|
|
1312
|
-
unhideWhenUsed?: ST_OnOff;
|
|
1313
|
-
qFormat?: ST_OnOff;
|
|
1314
|
-
};
|
|
1315
|
-
export type CT_LatentStyles = {
|
|
1316
|
-
defLockedState?: ST_OnOff;
|
|
1317
|
-
defUIPriority?: ST_DecimalNumber;
|
|
1318
|
-
defSemiHidden?: ST_OnOff;
|
|
1319
|
-
defUnhideWhenUsed?: ST_OnOff;
|
|
1320
|
-
defQFormat?: ST_OnOff;
|
|
1321
|
-
count?: ST_DecimalNumber;
|
|
1322
|
-
lsdException?: CT_LsdException;
|
|
1323
|
-
};
|
|
1324
|
-
export type CT_Styles = {
|
|
1325
|
-
docDefaults?: CT_DocDefaults;
|
|
1326
|
-
latentStyles?: CT_LatentStyles;
|
|
1327
|
-
style?: CT_Style;
|
|
1328
|
-
};
|
|
1329
|
-
export type CT_Panose = {
|
|
1330
|
-
val: ST_Panose;
|
|
1331
|
-
};
|
|
1332
|
-
export type CT_FontFamily = {
|
|
1333
|
-
val: ST_FontFamily;
|
|
1334
|
-
};
|
|
1335
|
-
export type CT_Pitch = {
|
|
1336
|
-
val: ST_Pitch;
|
|
1337
|
-
};
|
|
1338
|
-
export type CT_FontSig = {
|
|
1339
|
-
usb0: ST_LongHexNumber;
|
|
1340
|
-
usb1: ST_LongHexNumber;
|
|
1341
|
-
usb2: ST_LongHexNumber;
|
|
1342
|
-
usb3: ST_LongHexNumber;
|
|
1343
|
-
csb0: ST_LongHexNumber;
|
|
1344
|
-
csb1: ST_LongHexNumber;
|
|
1345
|
-
};
|
|
1346
|
-
export type CT_FontRel = CT_Rel & {
|
|
1347
|
-
fontKey?: ST_Guid;
|
|
1348
|
-
subsetted?: ST_OnOff;
|
|
1349
|
-
};
|
|
1350
|
-
export type CT_Font = {
|
|
1351
|
-
name: ST_String;
|
|
1352
|
-
altName?: CT_String;
|
|
1353
|
-
panose1?: CT_Panose;
|
|
1354
|
-
charset?: CT_Charset;
|
|
1355
|
-
family?: CT_FontFamily;
|
|
1356
|
-
notTrueType?: CT_OnOff;
|
|
1357
|
-
pitch?: CT_Pitch;
|
|
1358
|
-
sig?: CT_FontSig;
|
|
1359
|
-
embedRegular?: CT_FontRel;
|
|
1360
|
-
embedBold?: CT_FontRel;
|
|
1361
|
-
embedItalic?: CT_FontRel;
|
|
1362
|
-
embedBoldItalic?: CT_FontRel;
|
|
1363
|
-
};
|
|
1364
|
-
export type CT_FontsList = {
|
|
1365
|
-
font?: CT_Font;
|
|
1366
|
-
};
|
|
1367
|
-
export type CT_DivBdr = {
|
|
1368
|
-
top?: CT_Border;
|
|
1369
|
-
left?: CT_Border;
|
|
1370
|
-
bottom?: CT_Border;
|
|
1371
|
-
right?: CT_Border;
|
|
1372
|
-
};
|
|
1373
|
-
export type CT_Div = {
|
|
1374
|
-
id: ST_DecimalNumber;
|
|
1375
|
-
blockQuote?: CT_OnOff;
|
|
1376
|
-
bodyDiv?: CT_OnOff;
|
|
1377
|
-
marLeft?: CT_SignedTwipsMeasure;
|
|
1378
|
-
marRight?: CT_SignedTwipsMeasure;
|
|
1379
|
-
marTop?: CT_SignedTwipsMeasure;
|
|
1380
|
-
marBottom?: CT_SignedTwipsMeasure;
|
|
1381
|
-
divBdr?: CT_DivBdr;
|
|
1382
|
-
divsChild?: CT_Divs;
|
|
1383
|
-
};
|
|
1384
|
-
export type CT_Divs = {
|
|
1385
|
-
div?: CT_Div;
|
|
1386
|
-
};
|
|
1387
|
-
export type CT_Body = {
|
|
1388
|
-
sectPr?: CT_SectPr;
|
|
1389
|
-
};
|
|
1390
|
-
export type CT_Comments = {
|
|
1391
|
-
comment?: CT_Comment;
|
|
1392
|
-
};
|
|
1393
|
-
export type CT_Footnotes = {
|
|
1394
|
-
footnote?: CT_FtnEdn;
|
|
1395
|
-
};
|
|
1396
|
-
export type CT_Endnotes = {
|
|
1397
|
-
endnote?: CT_FtnEdn;
|
|
1398
|
-
};
|
|
1399
|
-
export type CT_SmartTagType = {
|
|
1400
|
-
namespaceuri?: ST_String;
|
|
1401
|
-
name?: ST_String;
|
|
1402
|
-
url?: ST_String;
|
|
1403
|
-
};
|
|
1404
|
-
export type CT_DocPartBehavior = {
|
|
1405
|
-
val: ST_DocPartBehavior;
|
|
1406
|
-
};
|
|
1407
|
-
export type CT_DocPartBehaviors = any;
|
|
1408
|
-
export type CT_DocPartType = {
|
|
1409
|
-
val: ST_DocPartType;
|
|
1410
|
-
};
|
|
1411
|
-
export type CT_DocPartTypes = {
|
|
1412
|
-
all?: ST_OnOff;
|
|
1413
|
-
};
|
|
1414
|
-
export type CT_DocPartGallery = {
|
|
1415
|
-
val: ST_DocPartGallery;
|
|
1416
|
-
};
|
|
1417
|
-
export type CT_DocPartCategory = {
|
|
1418
|
-
name?: CT_String;
|
|
1419
|
-
gallery?: CT_DocPartGallery;
|
|
1420
|
-
};
|
|
1421
|
-
export type CT_DocPartName = {
|
|
1422
|
-
val: ST_String;
|
|
1423
|
-
decorated?: ST_OnOff;
|
|
1424
|
-
};
|
|
1425
|
-
export type CT_DocPartPr = any;
|
|
1426
|
-
export type CT_DocPart = {
|
|
1427
|
-
docPartPr?: CT_DocPartPr;
|
|
1428
|
-
docPartBody?: CT_Body;
|
|
1429
|
-
};
|
|
1430
|
-
export type CT_DocParts = any;
|
|
1431
|
-
export type CT_Caption = {
|
|
1432
|
-
name: ST_String;
|
|
1433
|
-
pos?: ST_CaptionPos;
|
|
1434
|
-
chapNum?: ST_OnOff;
|
|
1435
|
-
heading?: ST_DecimalNumber;
|
|
1436
|
-
noLabel?: ST_OnOff;
|
|
1437
|
-
numFmt?: ST_NumberFormat;
|
|
1438
|
-
sep?: ST_ChapterSep;
|
|
1439
|
-
};
|
|
1440
|
-
export type CT_AutoCaption = {
|
|
1441
|
-
name: ST_String;
|
|
1442
|
-
caption: ST_String;
|
|
1443
|
-
};
|
|
1444
|
-
export type CT_AutoCaptions = {
|
|
1445
|
-
autoCaption?: CT_AutoCaption;
|
|
1446
|
-
};
|
|
1447
|
-
export type CT_Captions = {
|
|
1448
|
-
caption?: CT_Caption;
|
|
1449
|
-
autoCaptions?: CT_AutoCaptions;
|
|
1450
|
-
};
|
|
1451
|
-
export type CT_DocumentBase = {
|
|
1452
|
-
background?: CT_Background;
|
|
1453
|
-
};
|
|
1454
|
-
export type CT_Document = CT_DocumentBase & {
|
|
1455
|
-
conformance?: ST_ConformanceClass;
|
|
1456
|
-
};
|
|
1457
|
-
export type CT_GlossaryDocument = CT_DocumentBase;
|
|
1458
23
|
export type ST_LongHexNumber = string;
|
|
1459
24
|
export type ST_ShortHexNumber = string;
|
|
1460
25
|
export type ST_UcharHexNumber = string;
|
|
@@ -1470,1043 +35,185 @@ export type ST_EighthPointMeasure = ST_UnsignedDecimalNumber;
|
|
|
1470
35
|
export type ST_PointMeasure = ST_UnsignedDecimalNumber;
|
|
1471
36
|
export type ST_TextScale = ST_TextScalePercent;
|
|
1472
37
|
export type ST_TextScalePercent = string;
|
|
1473
|
-
export
|
|
1474
|
-
|
|
1475
|
-
blue = "blue",
|
|
1476
|
-
cyan = "cyan",
|
|
1477
|
-
green = "green",
|
|
1478
|
-
magenta = "magenta",
|
|
1479
|
-
red = "red",
|
|
1480
|
-
yellow = "yellow",
|
|
1481
|
-
white = "white",
|
|
1482
|
-
darkBlue = "darkBlue",
|
|
1483
|
-
darkCyan = "darkCyan",
|
|
1484
|
-
darkGreen = "darkGreen",
|
|
1485
|
-
darkMagenta = "darkMagenta",
|
|
1486
|
-
darkRed = "darkRed",
|
|
1487
|
-
darkYellow = "darkYellow",
|
|
1488
|
-
darkGray = "darkGray",
|
|
1489
|
-
lightGray = "lightGray",
|
|
1490
|
-
none = "none"
|
|
1491
|
-
}
|
|
1492
|
-
export declare enum ST_HexColorAuto {
|
|
1493
|
-
auto = "auto"
|
|
1494
|
-
}
|
|
38
|
+
export type ST_HighlightColor = 'black' | 'blue' | 'cyan' | 'green' | 'magenta' | 'red' | 'yellow' | 'white' | 'darkBlue' | 'darkCyan' | 'darkGreen' | 'darkMagenta' | 'darkRed' | 'darkYellow' | 'darkGray' | 'lightGray' | 'none';
|
|
39
|
+
export type ST_HexColorAuto = 'auto';
|
|
1495
40
|
export type ST_HexColor = ST_HexColorAuto | ST_HexColorRGB;
|
|
1496
|
-
export
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
}
|
|
1516
|
-
export declare enum ST_TextEffect {
|
|
1517
|
-
blinkBackground = "blinkBackground",
|
|
1518
|
-
lights = "lights",
|
|
1519
|
-
antsBlack = "antsBlack",
|
|
1520
|
-
antsRed = "antsRed",
|
|
1521
|
-
shimmer = "shimmer",
|
|
1522
|
-
sparkle = "sparkle",
|
|
1523
|
-
none = "none"
|
|
1524
|
-
}
|
|
1525
|
-
export declare enum ST_Border {
|
|
1526
|
-
nil = "nil",
|
|
1527
|
-
none = "none",
|
|
1528
|
-
single = "single",
|
|
1529
|
-
thick = "thick",
|
|
1530
|
-
double = "double",
|
|
1531
|
-
dotted = "dotted",
|
|
1532
|
-
dashed = "dashed",
|
|
1533
|
-
dotDash = "dotDash",
|
|
1534
|
-
dotDotDash = "dotDotDash",
|
|
1535
|
-
triple = "triple",
|
|
1536
|
-
thinThickSmallGap = "thinThickSmallGap",
|
|
1537
|
-
thickThinSmallGap = "thickThinSmallGap",
|
|
1538
|
-
thinThickThinSmallGap = "thinThickThinSmallGap",
|
|
1539
|
-
thinThickMediumGap = "thinThickMediumGap",
|
|
1540
|
-
thickThinMediumGap = "thickThinMediumGap",
|
|
1541
|
-
thinThickThinMediumGap = "thinThickThinMediumGap",
|
|
1542
|
-
thinThickLargeGap = "thinThickLargeGap",
|
|
1543
|
-
thickThinLargeGap = "thickThinLargeGap",
|
|
1544
|
-
thinThickThinLargeGap = "thinThickThinLargeGap",
|
|
1545
|
-
wave = "wave",
|
|
1546
|
-
doubleWave = "doubleWave",
|
|
1547
|
-
dashSmallGap = "dashSmallGap",
|
|
1548
|
-
dashDotStroked = "dashDotStroked",
|
|
1549
|
-
threeDEmboss = "threeDEmboss",
|
|
1550
|
-
threeDEngrave = "threeDEngrave",
|
|
1551
|
-
outset = "outset",
|
|
1552
|
-
inset = "inset",
|
|
1553
|
-
apples = "apples",
|
|
1554
|
-
archedScallops = "archedScallops",
|
|
1555
|
-
babyPacifier = "babyPacifier",
|
|
1556
|
-
babyRattle = "babyRattle",
|
|
1557
|
-
balloons3Colors = "balloons3Colors",
|
|
1558
|
-
balloonsHotAir = "balloonsHotAir",
|
|
1559
|
-
basicBlackDashes = "basicBlackDashes",
|
|
1560
|
-
basicBlackDots = "basicBlackDots",
|
|
1561
|
-
basicBlackSquares = "basicBlackSquares",
|
|
1562
|
-
basicThinLines = "basicThinLines",
|
|
1563
|
-
basicWhiteDashes = "basicWhiteDashes",
|
|
1564
|
-
basicWhiteDots = "basicWhiteDots",
|
|
1565
|
-
basicWhiteSquares = "basicWhiteSquares",
|
|
1566
|
-
basicWideInline = "basicWideInline",
|
|
1567
|
-
basicWideMidline = "basicWideMidline",
|
|
1568
|
-
basicWideOutline = "basicWideOutline",
|
|
1569
|
-
bats = "bats",
|
|
1570
|
-
birds = "birds",
|
|
1571
|
-
birdsFlight = "birdsFlight",
|
|
1572
|
-
cabins = "cabins",
|
|
1573
|
-
cakeSlice = "cakeSlice",
|
|
1574
|
-
candyCorn = "candyCorn",
|
|
1575
|
-
celticKnotwork = "celticKnotwork",
|
|
1576
|
-
certificateBanner = "certificateBanner",
|
|
1577
|
-
chainLink = "chainLink",
|
|
1578
|
-
champagneBottle = "champagneBottle",
|
|
1579
|
-
checkedBarBlack = "checkedBarBlack",
|
|
1580
|
-
checkedBarColor = "checkedBarColor",
|
|
1581
|
-
checkered = "checkered",
|
|
1582
|
-
christmasTree = "christmasTree",
|
|
1583
|
-
circlesLines = "circlesLines",
|
|
1584
|
-
circlesRectangles = "circlesRectangles",
|
|
1585
|
-
classicalWave = "classicalWave",
|
|
1586
|
-
clocks = "clocks",
|
|
1587
|
-
compass = "compass",
|
|
1588
|
-
confetti = "confetti",
|
|
1589
|
-
confettiGrays = "confettiGrays",
|
|
1590
|
-
confettiOutline = "confettiOutline",
|
|
1591
|
-
confettiStreamers = "confettiStreamers",
|
|
1592
|
-
confettiWhite = "confettiWhite",
|
|
1593
|
-
cornerTriangles = "cornerTriangles",
|
|
1594
|
-
couponCutoutDashes = "couponCutoutDashes",
|
|
1595
|
-
couponCutoutDots = "couponCutoutDots",
|
|
1596
|
-
crazyMaze = "crazyMaze",
|
|
1597
|
-
creaturesButterfly = "creaturesButterfly",
|
|
1598
|
-
creaturesFish = "creaturesFish",
|
|
1599
|
-
creaturesInsects = "creaturesInsects",
|
|
1600
|
-
creaturesLadyBug = "creaturesLadyBug",
|
|
1601
|
-
crossStitch = "crossStitch",
|
|
1602
|
-
cup = "cup",
|
|
1603
|
-
decoArch = "decoArch",
|
|
1604
|
-
decoArchColor = "decoArchColor",
|
|
1605
|
-
decoBlocks = "decoBlocks",
|
|
1606
|
-
diamondsGray = "diamondsGray",
|
|
1607
|
-
doubleD = "doubleD",
|
|
1608
|
-
doubleDiamonds = "doubleDiamonds",
|
|
1609
|
-
earth1 = "earth1",
|
|
1610
|
-
earth2 = "earth2",
|
|
1611
|
-
earth3 = "earth3",
|
|
1612
|
-
eclipsingSquares1 = "eclipsingSquares1",
|
|
1613
|
-
eclipsingSquares2 = "eclipsingSquares2",
|
|
1614
|
-
eggsBlack = "eggsBlack",
|
|
1615
|
-
fans = "fans",
|
|
1616
|
-
film = "film",
|
|
1617
|
-
firecrackers = "firecrackers",
|
|
1618
|
-
flowersBlockPrint = "flowersBlockPrint",
|
|
1619
|
-
flowersDaisies = "flowersDaisies",
|
|
1620
|
-
flowersModern1 = "flowersModern1",
|
|
1621
|
-
flowersModern2 = "flowersModern2",
|
|
1622
|
-
flowersPansy = "flowersPansy",
|
|
1623
|
-
flowersRedRose = "flowersRedRose",
|
|
1624
|
-
flowersRoses = "flowersRoses",
|
|
1625
|
-
flowersTeacup = "flowersTeacup",
|
|
1626
|
-
flowersTiny = "flowersTiny",
|
|
1627
|
-
gems = "gems",
|
|
1628
|
-
gingerbreadMan = "gingerbreadMan",
|
|
1629
|
-
gradient = "gradient",
|
|
1630
|
-
handmade1 = "handmade1",
|
|
1631
|
-
handmade2 = "handmade2",
|
|
1632
|
-
heartBalloon = "heartBalloon",
|
|
1633
|
-
heartGray = "heartGray",
|
|
1634
|
-
hearts = "hearts",
|
|
1635
|
-
heebieJeebies = "heebieJeebies",
|
|
1636
|
-
holly = "holly",
|
|
1637
|
-
houseFunky = "houseFunky",
|
|
1638
|
-
hypnotic = "hypnotic",
|
|
1639
|
-
iceCreamCones = "iceCreamCones",
|
|
1640
|
-
lightBulb = "lightBulb",
|
|
1641
|
-
lightning1 = "lightning1",
|
|
1642
|
-
lightning2 = "lightning2",
|
|
1643
|
-
mapPins = "mapPins",
|
|
1644
|
-
mapleLeaf = "mapleLeaf",
|
|
1645
|
-
mapleMuffins = "mapleMuffins",
|
|
1646
|
-
marquee = "marquee",
|
|
1647
|
-
marqueeToothed = "marqueeToothed",
|
|
1648
|
-
moons = "moons",
|
|
1649
|
-
mosaic = "mosaic",
|
|
1650
|
-
musicNotes = "musicNotes",
|
|
1651
|
-
northwest = "northwest",
|
|
1652
|
-
ovals = "ovals",
|
|
1653
|
-
packages = "packages",
|
|
1654
|
-
palmsBlack = "palmsBlack",
|
|
1655
|
-
palmsColor = "palmsColor",
|
|
1656
|
-
paperClips = "paperClips",
|
|
1657
|
-
papyrus = "papyrus",
|
|
1658
|
-
partyFavor = "partyFavor",
|
|
1659
|
-
partyGlass = "partyGlass",
|
|
1660
|
-
pencils = "pencils",
|
|
1661
|
-
people = "people",
|
|
1662
|
-
peopleWaving = "peopleWaving",
|
|
1663
|
-
peopleHats = "peopleHats",
|
|
1664
|
-
poinsettias = "poinsettias",
|
|
1665
|
-
postageStamp = "postageStamp",
|
|
1666
|
-
pumpkin1 = "pumpkin1",
|
|
1667
|
-
pushPinNote2 = "pushPinNote2",
|
|
1668
|
-
pushPinNote1 = "pushPinNote1",
|
|
1669
|
-
pyramids = "pyramids",
|
|
1670
|
-
pyramidsAbove = "pyramidsAbove",
|
|
1671
|
-
quadrants = "quadrants",
|
|
1672
|
-
rings = "rings",
|
|
1673
|
-
safari = "safari",
|
|
1674
|
-
sawtooth = "sawtooth",
|
|
1675
|
-
sawtoothGray = "sawtoothGray",
|
|
1676
|
-
scaredCat = "scaredCat",
|
|
1677
|
-
seattle = "seattle",
|
|
1678
|
-
shadowedSquares = "shadowedSquares",
|
|
1679
|
-
sharksTeeth = "sharksTeeth",
|
|
1680
|
-
shorebirdTracks = "shorebirdTracks",
|
|
1681
|
-
skyrocket = "skyrocket",
|
|
1682
|
-
snowflakeFancy = "snowflakeFancy",
|
|
1683
|
-
snowflakes = "snowflakes",
|
|
1684
|
-
sombrero = "sombrero",
|
|
1685
|
-
southwest = "southwest",
|
|
1686
|
-
stars = "stars",
|
|
1687
|
-
starsTop = "starsTop",
|
|
1688
|
-
stars3d = "stars3d",
|
|
1689
|
-
starsBlack = "starsBlack",
|
|
1690
|
-
starsShadowed = "starsShadowed",
|
|
1691
|
-
sun = "sun",
|
|
1692
|
-
swirligig = "swirligig",
|
|
1693
|
-
tornPaper = "tornPaper",
|
|
1694
|
-
tornPaperBlack = "tornPaperBlack",
|
|
1695
|
-
trees = "trees",
|
|
1696
|
-
triangleParty = "triangleParty",
|
|
1697
|
-
triangles = "triangles",
|
|
1698
|
-
triangle1 = "triangle1",
|
|
1699
|
-
triangle2 = "triangle2",
|
|
1700
|
-
triangleCircle1 = "triangleCircle1",
|
|
1701
|
-
triangleCircle2 = "triangleCircle2",
|
|
1702
|
-
shapes1 = "shapes1",
|
|
1703
|
-
shapes2 = "shapes2",
|
|
1704
|
-
twistedLines1 = "twistedLines1",
|
|
1705
|
-
twistedLines2 = "twistedLines2",
|
|
1706
|
-
vine = "vine",
|
|
1707
|
-
waveline = "waveline",
|
|
1708
|
-
weavingAngles = "weavingAngles",
|
|
1709
|
-
weavingBraid = "weavingBraid",
|
|
1710
|
-
weavingRibbon = "weavingRibbon",
|
|
1711
|
-
weavingStrips = "weavingStrips",
|
|
1712
|
-
whiteFlowers = "whiteFlowers",
|
|
1713
|
-
woodwork = "woodwork",
|
|
1714
|
-
xIllusions = "xIllusions",
|
|
1715
|
-
zanyTriangles = "zanyTriangles",
|
|
1716
|
-
zigZag = "zigZag",
|
|
1717
|
-
zigZagStitch = "zigZagStitch",
|
|
1718
|
-
custom = "custom"
|
|
1719
|
-
}
|
|
1720
|
-
export declare enum ST_Shd {
|
|
1721
|
-
nil = "nil",
|
|
1722
|
-
clear = "clear",
|
|
1723
|
-
solid = "solid",
|
|
1724
|
-
horzStripe = "horzStripe",
|
|
1725
|
-
vertStripe = "vertStripe",
|
|
1726
|
-
reverseDiagStripe = "reverseDiagStripe",
|
|
1727
|
-
diagStripe = "diagStripe",
|
|
1728
|
-
horzCross = "horzCross",
|
|
1729
|
-
diagCross = "diagCross",
|
|
1730
|
-
thinHorzStripe = "thinHorzStripe",
|
|
1731
|
-
thinVertStripe = "thinVertStripe",
|
|
1732
|
-
thinReverseDiagStripe = "thinReverseDiagStripe",
|
|
1733
|
-
thinDiagStripe = "thinDiagStripe",
|
|
1734
|
-
thinHorzCross = "thinHorzCross",
|
|
1735
|
-
thinDiagCross = "thinDiagCross",
|
|
1736
|
-
pct5 = "pct5",
|
|
1737
|
-
pct10 = "pct10",
|
|
1738
|
-
pct12 = "pct12",
|
|
1739
|
-
pct15 = "pct15",
|
|
1740
|
-
pct20 = "pct20",
|
|
1741
|
-
pct25 = "pct25",
|
|
1742
|
-
pct30 = "pct30",
|
|
1743
|
-
pct35 = "pct35",
|
|
1744
|
-
pct37 = "pct37",
|
|
1745
|
-
pct40 = "pct40",
|
|
1746
|
-
pct45 = "pct45",
|
|
1747
|
-
pct50 = "pct50",
|
|
1748
|
-
pct55 = "pct55",
|
|
1749
|
-
pct60 = "pct60",
|
|
1750
|
-
pct62 = "pct62",
|
|
1751
|
-
pct65 = "pct65",
|
|
1752
|
-
pct70 = "pct70",
|
|
1753
|
-
pct75 = "pct75",
|
|
1754
|
-
pct80 = "pct80",
|
|
1755
|
-
pct85 = "pct85",
|
|
1756
|
-
pct87 = "pct87",
|
|
1757
|
-
pct90 = "pct90",
|
|
1758
|
-
pct95 = "pct95"
|
|
1759
|
-
}
|
|
1760
|
-
export declare enum ST_Em {
|
|
1761
|
-
none = "none",
|
|
1762
|
-
dot = "dot",
|
|
1763
|
-
comma = "comma",
|
|
1764
|
-
circle = "circle",
|
|
1765
|
-
underDot = "underDot"
|
|
1766
|
-
}
|
|
1767
|
-
export declare enum ST_CombineBrackets {
|
|
1768
|
-
none = "none",
|
|
1769
|
-
round = "round",
|
|
1770
|
-
square = "square",
|
|
1771
|
-
angle = "angle",
|
|
1772
|
-
curly = "curly"
|
|
1773
|
-
}
|
|
1774
|
-
export declare enum ST_HeightRule {
|
|
1775
|
-
auto = "auto",
|
|
1776
|
-
exact = "exact",
|
|
1777
|
-
atLeast = "atLeast"
|
|
1778
|
-
}
|
|
1779
|
-
export declare enum ST_Wrap {
|
|
1780
|
-
auto = "auto",
|
|
1781
|
-
notBeside = "notBeside",
|
|
1782
|
-
around = "around",
|
|
1783
|
-
tight = "tight",
|
|
1784
|
-
through = "through",
|
|
1785
|
-
none = "none"
|
|
1786
|
-
}
|
|
1787
|
-
export declare enum ST_VAnchor {
|
|
1788
|
-
text = "text",
|
|
1789
|
-
margin = "margin",
|
|
1790
|
-
page = "page"
|
|
1791
|
-
}
|
|
1792
|
-
export declare enum ST_HAnchor {
|
|
1793
|
-
text = "text",
|
|
1794
|
-
margin = "margin",
|
|
1795
|
-
page = "page"
|
|
1796
|
-
}
|
|
1797
|
-
export declare enum ST_DropCap {
|
|
1798
|
-
none = "none",
|
|
1799
|
-
drop = "drop",
|
|
1800
|
-
margin = "margin"
|
|
1801
|
-
}
|
|
1802
|
-
export declare enum ST_TabJc {
|
|
1803
|
-
clear = "clear",
|
|
1804
|
-
start = "start",
|
|
1805
|
-
center = "center",
|
|
1806
|
-
end = "end",
|
|
1807
|
-
decimal = "decimal",
|
|
1808
|
-
bar = "bar",
|
|
1809
|
-
num = "num"
|
|
1810
|
-
}
|
|
1811
|
-
export declare enum ST_TabTlc {
|
|
1812
|
-
none = "none",
|
|
1813
|
-
dot = "dot",
|
|
1814
|
-
hyphen = "hyphen",
|
|
1815
|
-
underscore = "underscore",
|
|
1816
|
-
heavy = "heavy",
|
|
1817
|
-
middleDot = "middleDot"
|
|
1818
|
-
}
|
|
1819
|
-
export declare enum ST_LineSpacingRule {
|
|
1820
|
-
auto = "auto",
|
|
1821
|
-
exact = "exact",
|
|
1822
|
-
atLeast = "atLeast"
|
|
1823
|
-
}
|
|
1824
|
-
export declare enum ST_Jc {
|
|
1825
|
-
start = "start",
|
|
1826
|
-
center = "center",
|
|
1827
|
-
end = "end",
|
|
1828
|
-
both = "both",
|
|
1829
|
-
mediumKashida = "mediumKashida",
|
|
1830
|
-
distribute = "distribute",
|
|
1831
|
-
numTab = "numTab",
|
|
1832
|
-
highKashida = "highKashida",
|
|
1833
|
-
lowKashida = "lowKashida",
|
|
1834
|
-
thaiDistribute = "thaiDistribute"
|
|
1835
|
-
}
|
|
1836
|
-
export declare enum ST_JcTable {
|
|
1837
|
-
center = "center",
|
|
1838
|
-
end = "end",
|
|
1839
|
-
start = "start"
|
|
1840
|
-
}
|
|
1841
|
-
export declare enum ST_View {
|
|
1842
|
-
none = "none",
|
|
1843
|
-
print = "print",
|
|
1844
|
-
outline = "outline",
|
|
1845
|
-
masterPages = "masterPages",
|
|
1846
|
-
normal = "normal",
|
|
1847
|
-
web = "web"
|
|
1848
|
-
}
|
|
1849
|
-
export declare enum ST_Zoom {
|
|
1850
|
-
none = "none",
|
|
1851
|
-
fullPage = "fullPage",
|
|
1852
|
-
bestFit = "bestFit",
|
|
1853
|
-
textFit = "textFit"
|
|
1854
|
-
}
|
|
1855
|
-
export declare enum ST_Proof {
|
|
1856
|
-
clean = "clean",
|
|
1857
|
-
dirty = "dirty"
|
|
1858
|
-
}
|
|
41
|
+
export type ST_Underline = 'single' | 'words' | 'double' | 'thick' | 'dotted' | 'dottedHeavy' | 'dash' | 'dashedHeavy' | 'dashLong' | 'dashLongHeavy' | 'dotDash' | 'dashDotHeavy' | 'dotDotDash' | 'dashDotDotHeavy' | 'wave' | 'wavyHeavy' | 'wavyDouble' | 'none';
|
|
42
|
+
export type ST_TextEffect = 'blinkBackground' | 'lights' | 'antsBlack' | 'antsRed' | 'shimmer' | 'sparkle' | 'none';
|
|
43
|
+
export type ST_Border = 'nil' | 'none' | 'single' | 'thick' | 'double' | 'dotted' | 'dashed' | 'dotDash' | 'dotDotDash' | 'triple' | 'thinThickSmallGap' | 'thickThinSmallGap' | 'thinThickThinSmallGap' | 'thinThickMediumGap' | 'thickThinMediumGap' | 'thinThickThinMediumGap' | 'thinThickLargeGap' | 'thickThinLargeGap' | 'thinThickThinLargeGap' | 'wave' | 'doubleWave' | 'dashSmallGap' | 'dashDotStroked' | 'threeDEmboss' | 'threeDEngrave' | 'outset' | 'inset' | 'apples' | 'archedScallops' | 'babyPacifier' | 'babyRattle' | 'balloons3Colors' | 'balloonsHotAir' | 'basicBlackDashes' | 'basicBlackDots' | 'basicBlackSquares' | 'basicThinLines' | 'basicWhiteDashes' | 'basicWhiteDots' | 'basicWhiteSquares' | 'basicWideInline' | 'basicWideMidline' | 'basicWideOutline' | 'bats' | 'birds' | 'birdsFlight' | 'cabins' | 'cakeSlice' | 'candyCorn' | 'celticKnotwork' | 'certificateBanner' | 'chainLink' | 'champagneBottle' | 'checkedBarBlack' | 'checkedBarColor' | 'checkered' | 'christmasTree' | 'circlesLines' | 'circlesRectangles' | 'classicalWave' | 'clocks' | 'compass' | 'confetti' | 'confettiGrays' | 'confettiOutline' | 'confettiStreamers' | 'confettiWhite' | 'cornerTriangles' | 'couponCutoutDashes' | 'couponCutoutDots' | 'crazyMaze' | 'creaturesButterfly' | 'creaturesFish' | 'creaturesInsects' | 'creaturesLadyBug' | 'crossStitch' | 'cup' | 'decoArch' | 'decoArchColor' | 'decoBlocks' | 'diamondsGray' | 'doubleD' | 'doubleDiamonds' | 'earth1' | 'earth2' | 'earth3' | 'eclipsingSquares1' | 'eclipsingSquares2' | 'eggsBlack' | 'fans' | 'film' | 'firecrackers' | 'flowersBlockPrint' | 'flowersDaisies' | 'flowersModern1' | 'flowersModern2' | 'flowersPansy' | 'flowersRedRose' | 'flowersRoses' | 'flowersTeacup' | 'flowersTiny' | 'gems' | 'gingerbreadMan' | 'gradient' | 'handmade1' | 'handmade2' | 'heartBalloon' | 'heartGray' | 'hearts' | 'heebieJeebies' | 'holly' | 'houseFunky' | 'hypnotic' | 'iceCreamCones' | 'lightBulb' | 'lightning1' | 'lightning2' | 'mapPins' | 'mapleLeaf' | 'mapleMuffins' | 'marquee' | 'marqueeToothed' | 'moons' | 'mosaic' | 'musicNotes' | 'northwest' | 'ovals' | 'packages' | 'palmsBlack' | 'palmsColor' | 'paperClips' | 'papyrus' | 'partyFavor' | 'partyGlass' | 'pencils' | 'people' | 'peopleWaving' | 'peopleHats' | 'poinsettias' | 'postageStamp' | 'pumpkin1' | 'pushPinNote2' | 'pushPinNote1' | 'pyramids' | 'pyramidsAbove' | 'quadrants' | 'rings' | 'safari' | 'sawtooth' | 'sawtoothGray' | 'scaredCat' | 'seattle' | 'shadowedSquares' | 'sharksTeeth' | 'shorebirdTracks' | 'skyrocket' | 'snowflakeFancy' | 'snowflakes' | 'sombrero' | 'southwest' | 'stars' | 'starsTop' | 'stars3d' | 'starsBlack' | 'starsShadowed' | 'sun' | 'swirligig' | 'tornPaper' | 'tornPaperBlack' | 'trees' | 'triangleParty' | 'triangles' | 'triangle1' | 'triangle2' | 'triangleCircle1' | 'triangleCircle2' | 'shapes1' | 'shapes2' | 'twistedLines1' | 'twistedLines2' | 'vine' | 'waveline' | 'weavingAngles' | 'weavingBraid' | 'weavingRibbon' | 'weavingStrips' | 'whiteFlowers' | 'woodwork' | 'xIllusions' | 'zanyTriangles' | 'zigZag' | 'zigZagStitch' | 'custom';
|
|
44
|
+
export type ST_Shd = 'nil' | 'clear' | 'solid' | 'horzStripe' | 'vertStripe' | 'reverseDiagStripe' | 'diagStripe' | 'horzCross' | 'diagCross' | 'thinHorzStripe' | 'thinVertStripe' | 'thinReverseDiagStripe' | 'thinDiagStripe' | 'thinHorzCross' | 'thinDiagCross' | 'pct5' | 'pct10' | 'pct12' | 'pct15' | 'pct20' | 'pct25' | 'pct30' | 'pct35' | 'pct37' | 'pct40' | 'pct45' | 'pct50' | 'pct55' | 'pct60' | 'pct62' | 'pct65' | 'pct70' | 'pct75' | 'pct80' | 'pct85' | 'pct87' | 'pct90' | 'pct95';
|
|
45
|
+
export type ST_Em = 'none' | 'dot' | 'comma' | 'circle' | 'underDot';
|
|
46
|
+
export type ST_CombineBrackets = 'none' | 'round' | 'square' | 'angle' | 'curly';
|
|
47
|
+
export type ST_HeightRule = 'auto' | 'exact' | 'atLeast';
|
|
48
|
+
export type ST_Wrap = 'auto' | 'notBeside' | 'around' | 'tight' | 'through' | 'none';
|
|
49
|
+
export type ST_VAnchor = 'text' | 'margin' | 'page';
|
|
50
|
+
export type ST_HAnchor = 'text' | 'margin' | 'page';
|
|
51
|
+
export type ST_DropCap = 'none' | 'drop' | 'margin';
|
|
52
|
+
export type ST_TabJc = 'clear' | 'start' | 'center' | 'end' | 'decimal' | 'bar' | 'num';
|
|
53
|
+
export type ST_TabTlc = 'none' | 'dot' | 'hyphen' | 'underscore' | 'heavy' | 'middleDot';
|
|
54
|
+
export type ST_LineSpacingRule = 'auto' | 'exact' | 'atLeast';
|
|
55
|
+
export type ST_Jc = 'start' | 'center' | 'end' | 'both' | 'mediumKashida' | 'distribute' | 'numTab' | 'highKashida' | 'lowKashida' | 'thaiDistribute';
|
|
56
|
+
export type ST_JcTable = 'center' | 'end' | 'start';
|
|
57
|
+
export type ST_View = 'none' | 'print' | 'outline' | 'masterPages' | 'normal' | 'web';
|
|
58
|
+
export type ST_Zoom = 'none' | 'fullPage' | 'bestFit' | 'textFit';
|
|
59
|
+
export type ST_Proof = 'clean' | 'dirty';
|
|
1859
60
|
export type ST_DocType = string;
|
|
1860
|
-
export
|
|
1861
|
-
|
|
1862
|
-
readOnly = "readOnly",
|
|
1863
|
-
comments = "comments",
|
|
1864
|
-
trackedChanges = "trackedChanges",
|
|
1865
|
-
forms = "forms"
|
|
1866
|
-
}
|
|
1867
|
-
export declare enum ST_MailMergeDocType {
|
|
1868
|
-
catalog = "catalog",
|
|
1869
|
-
envelopes = "envelopes",
|
|
1870
|
-
mailingLabels = "mailingLabels",
|
|
1871
|
-
formLetters = "formLetters",
|
|
1872
|
-
email = "email",
|
|
1873
|
-
fax = "fax"
|
|
1874
|
-
}
|
|
61
|
+
export type ST_DocProtect = 'none' | 'readOnly' | 'comments' | 'trackedChanges' | 'forms';
|
|
62
|
+
export type ST_MailMergeDocType = 'catalog' | 'envelopes' | 'mailingLabels' | 'formLetters' | 'email' | 'fax';
|
|
1875
63
|
export type ST_MailMergeDataType = string;
|
|
1876
|
-
export
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
export
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
export
|
|
1887
|
-
tb = "tb",
|
|
1888
|
-
rl = "rl",
|
|
1889
|
-
lr = "lr",
|
|
1890
|
-
tbV = "tbV",
|
|
1891
|
-
rlV = "rlV",
|
|
1892
|
-
lrV = "lrV"
|
|
1893
|
-
}
|
|
1894
|
-
export declare enum ST_TextAlignment {
|
|
1895
|
-
top = "top",
|
|
1896
|
-
center = "center",
|
|
1897
|
-
baseline = "baseline",
|
|
1898
|
-
bottom = "bottom",
|
|
1899
|
-
auto = "auto"
|
|
1900
|
-
}
|
|
1901
|
-
export declare enum ST_DisplacedByCustomXml {
|
|
1902
|
-
next = "next",
|
|
1903
|
-
prev = "prev"
|
|
1904
|
-
}
|
|
1905
|
-
export declare enum ST_AnnotationVMerge {
|
|
1906
|
-
cont = "cont",
|
|
1907
|
-
rest = "rest"
|
|
1908
|
-
}
|
|
1909
|
-
export declare enum ST_TextboxTightWrap {
|
|
1910
|
-
none = "none",
|
|
1911
|
-
allLines = "allLines",
|
|
1912
|
-
firstAndLastLine = "firstAndLastLine",
|
|
1913
|
-
firstLineOnly = "firstLineOnly",
|
|
1914
|
-
lastLineOnly = "lastLineOnly"
|
|
1915
|
-
}
|
|
1916
|
-
export declare enum ST_ObjectDrawAspect {
|
|
1917
|
-
content = "content",
|
|
1918
|
-
icon = "icon"
|
|
1919
|
-
}
|
|
1920
|
-
export declare enum ST_ObjectUpdateMode {
|
|
1921
|
-
always = "always",
|
|
1922
|
-
onCall = "onCall"
|
|
1923
|
-
}
|
|
1924
|
-
export declare enum ST_FldCharType {
|
|
1925
|
-
begin = "begin",
|
|
1926
|
-
separate = "separate",
|
|
1927
|
-
end = "end"
|
|
1928
|
-
}
|
|
1929
|
-
export declare enum ST_InfoTextType {
|
|
1930
|
-
text = "text",
|
|
1931
|
-
autoText = "autoText"
|
|
1932
|
-
}
|
|
64
|
+
export type ST_MailMergeDest = 'newDocument' | 'printer' | 'email' | 'fax';
|
|
65
|
+
export type ST_MailMergeOdsoFMDFieldType = 'null' | 'dbColumn';
|
|
66
|
+
export type ST_TextDirection = 'tb' | 'rl' | 'lr' | 'tbV' | 'rlV' | 'lrV';
|
|
67
|
+
export type ST_TextAlignment = 'top' | 'center' | 'baseline' | 'bottom' | 'auto';
|
|
68
|
+
export type ST_DisplacedByCustomXml = 'next' | 'prev';
|
|
69
|
+
export type ST_AnnotationVMerge = 'cont' | 'rest';
|
|
70
|
+
export type ST_TextboxTightWrap = 'none' | 'allLines' | 'firstAndLastLine' | 'firstLineOnly' | 'lastLineOnly';
|
|
71
|
+
export type ST_ObjectDrawAspect = 'content' | 'icon';
|
|
72
|
+
export type ST_ObjectUpdateMode = 'always' | 'onCall';
|
|
73
|
+
export type ST_FldCharType = 'begin' | 'separate' | 'end';
|
|
74
|
+
export type ST_InfoTextType = 'text' | 'autoText';
|
|
1933
75
|
export type ST_FFHelpTextVal = string;
|
|
1934
76
|
export type ST_FFStatusTextVal = string;
|
|
1935
77
|
export type ST_FFName = string;
|
|
1936
|
-
export
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
export
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
export
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
japaneseCounting = "japaneseCounting",
|
|
1964
|
-
aiueo = "aiueo",
|
|
1965
|
-
iroha = "iroha",
|
|
1966
|
-
decimalFullWidth = "decimalFullWidth",
|
|
1967
|
-
decimalHalfWidth = "decimalHalfWidth",
|
|
1968
|
-
japaneseLegal = "japaneseLegal",
|
|
1969
|
-
japaneseDigitalTenThousand = "japaneseDigitalTenThousand",
|
|
1970
|
-
decimalEnclosedCircle = "decimalEnclosedCircle",
|
|
1971
|
-
decimalFullWidth2 = "decimalFullWidth2",
|
|
1972
|
-
aiueoFullWidth = "aiueoFullWidth",
|
|
1973
|
-
irohaFullWidth = "irohaFullWidth",
|
|
1974
|
-
decimalZero = "decimalZero",
|
|
1975
|
-
bullet = "bullet",
|
|
1976
|
-
ganada = "ganada",
|
|
1977
|
-
chosung = "chosung",
|
|
1978
|
-
decimalEnclosedFullstop = "decimalEnclosedFullstop",
|
|
1979
|
-
decimalEnclosedParen = "decimalEnclosedParen",
|
|
1980
|
-
decimalEnclosedCircleChinese = "decimalEnclosedCircleChinese",
|
|
1981
|
-
ideographEnclosedCircle = "ideographEnclosedCircle",
|
|
1982
|
-
ideographTraditional = "ideographTraditional",
|
|
1983
|
-
ideographZodiac = "ideographZodiac",
|
|
1984
|
-
ideographZodiacTraditional = "ideographZodiacTraditional",
|
|
1985
|
-
taiwaneseCounting = "taiwaneseCounting",
|
|
1986
|
-
ideographLegalTraditional = "ideographLegalTraditional",
|
|
1987
|
-
taiwaneseCountingThousand = "taiwaneseCountingThousand",
|
|
1988
|
-
taiwaneseDigital = "taiwaneseDigital",
|
|
1989
|
-
chineseCounting = "chineseCounting",
|
|
1990
|
-
chineseLegalSimplified = "chineseLegalSimplified",
|
|
1991
|
-
chineseCountingThousand = "chineseCountingThousand",
|
|
1992
|
-
koreanDigital = "koreanDigital",
|
|
1993
|
-
koreanCounting = "koreanCounting",
|
|
1994
|
-
koreanLegal = "koreanLegal",
|
|
1995
|
-
koreanDigital2 = "koreanDigital2",
|
|
1996
|
-
vietnameseCounting = "vietnameseCounting",
|
|
1997
|
-
russianLower = "russianLower",
|
|
1998
|
-
russianUpper = "russianUpper",
|
|
1999
|
-
none = "none",
|
|
2000
|
-
numberInDash = "numberInDash",
|
|
2001
|
-
hebrew1 = "hebrew1",
|
|
2002
|
-
hebrew2 = "hebrew2",
|
|
2003
|
-
arabicAlpha = "arabicAlpha",
|
|
2004
|
-
arabicAbjad = "arabicAbjad",
|
|
2005
|
-
hindiVowels = "hindiVowels",
|
|
2006
|
-
hindiConsonants = "hindiConsonants",
|
|
2007
|
-
hindiNumbers = "hindiNumbers",
|
|
2008
|
-
hindiCounting = "hindiCounting",
|
|
2009
|
-
thaiLetters = "thaiLetters",
|
|
2010
|
-
thaiNumbers = "thaiNumbers",
|
|
2011
|
-
thaiCounting = "thaiCounting",
|
|
2012
|
-
bahtText = "bahtText",
|
|
2013
|
-
dollarText = "dollarText",
|
|
2014
|
-
custom = "custom"
|
|
2015
|
-
}
|
|
2016
|
-
export declare enum ST_PageOrientation {
|
|
2017
|
-
portrait = "portrait",
|
|
2018
|
-
landscape = "landscape"
|
|
2019
|
-
}
|
|
2020
|
-
export declare enum ST_PageBorderZOrder {
|
|
2021
|
-
front = "front",
|
|
2022
|
-
back = "back"
|
|
2023
|
-
}
|
|
2024
|
-
export declare enum ST_PageBorderDisplay {
|
|
2025
|
-
allPages = "allPages",
|
|
2026
|
-
firstPage = "firstPage",
|
|
2027
|
-
notFirstPage = "notFirstPage"
|
|
2028
|
-
}
|
|
2029
|
-
export declare enum ST_PageBorderOffset {
|
|
2030
|
-
page = "page",
|
|
2031
|
-
text = "text"
|
|
2032
|
-
}
|
|
2033
|
-
export declare enum ST_ChapterSep {
|
|
2034
|
-
hyphen = "hyphen",
|
|
2035
|
-
period = "period",
|
|
2036
|
-
colon = "colon",
|
|
2037
|
-
emDash = "emDash",
|
|
2038
|
-
enDash = "enDash"
|
|
2039
|
-
}
|
|
2040
|
-
export declare enum ST_LineNumberRestart {
|
|
2041
|
-
newPage = "newPage",
|
|
2042
|
-
newSection = "newSection",
|
|
2043
|
-
continuous = "continuous"
|
|
2044
|
-
}
|
|
2045
|
-
export declare enum ST_VerticalJc {
|
|
2046
|
-
top = "top",
|
|
2047
|
-
center = "center",
|
|
2048
|
-
both = "both",
|
|
2049
|
-
bottom = "bottom"
|
|
2050
|
-
}
|
|
2051
|
-
export declare enum ST_DocGrid {
|
|
2052
|
-
default = "default",
|
|
2053
|
-
lines = "lines",
|
|
2054
|
-
linesAndChars = "linesAndChars",
|
|
2055
|
-
snapToChars = "snapToChars"
|
|
2056
|
-
}
|
|
2057
|
-
export declare enum ST_HdrFtr {
|
|
2058
|
-
even = "even",
|
|
2059
|
-
default = "default",
|
|
2060
|
-
first = "first"
|
|
2061
|
-
}
|
|
2062
|
-
export declare enum ST_FtnEdn {
|
|
2063
|
-
normal = "normal",
|
|
2064
|
-
separator = "separator",
|
|
2065
|
-
continuationSeparator = "continuationSeparator",
|
|
2066
|
-
continuationNotice = "continuationNotice"
|
|
2067
|
-
}
|
|
2068
|
-
export declare enum ST_BrType {
|
|
2069
|
-
page = "page",
|
|
2070
|
-
column = "column",
|
|
2071
|
-
textWrapping = "textWrapping"
|
|
2072
|
-
}
|
|
2073
|
-
export declare enum ST_BrClear {
|
|
2074
|
-
none = "none",
|
|
2075
|
-
left = "left",
|
|
2076
|
-
right = "right",
|
|
2077
|
-
all = "all"
|
|
2078
|
-
}
|
|
2079
|
-
export declare enum ST_PTabAlignment {
|
|
2080
|
-
left = "left",
|
|
2081
|
-
center = "center",
|
|
2082
|
-
right = "right"
|
|
2083
|
-
}
|
|
2084
|
-
export declare enum ST_PTabRelativeTo {
|
|
2085
|
-
margin = "margin",
|
|
2086
|
-
indent = "indent"
|
|
2087
|
-
}
|
|
2088
|
-
export declare enum ST_PTabLeader {
|
|
2089
|
-
none = "none",
|
|
2090
|
-
dot = "dot",
|
|
2091
|
-
hyphen = "hyphen",
|
|
2092
|
-
underscore = "underscore",
|
|
2093
|
-
middleDot = "middleDot"
|
|
2094
|
-
}
|
|
2095
|
-
export declare enum ST_ProofErr {
|
|
2096
|
-
spellStart = "spellStart",
|
|
2097
|
-
spellEnd = "spellEnd",
|
|
2098
|
-
gramStart = "gramStart",
|
|
2099
|
-
gramEnd = "gramEnd"
|
|
2100
|
-
}
|
|
2101
|
-
export declare enum ST_EdGrp {
|
|
2102
|
-
none = "none",
|
|
2103
|
-
everyone = "everyone",
|
|
2104
|
-
administrators = "administrators",
|
|
2105
|
-
contributors = "contributors",
|
|
2106
|
-
editors = "editors",
|
|
2107
|
-
owners = "owners",
|
|
2108
|
-
current = "current"
|
|
2109
|
-
}
|
|
2110
|
-
export declare enum ST_Hint {
|
|
2111
|
-
default = "default",
|
|
2112
|
-
eastAsia = "eastAsia"
|
|
2113
|
-
}
|
|
2114
|
-
export declare enum ST_Theme {
|
|
2115
|
-
majorEastAsia = "majorEastAsia",
|
|
2116
|
-
majorBidi = "majorBidi",
|
|
2117
|
-
majorAscii = "majorAscii",
|
|
2118
|
-
majorHAnsi = "majorHAnsi",
|
|
2119
|
-
minorEastAsia = "minorEastAsia",
|
|
2120
|
-
minorBidi = "minorBidi",
|
|
2121
|
-
minorAscii = "minorAscii",
|
|
2122
|
-
minorHAnsi = "minorHAnsi"
|
|
2123
|
-
}
|
|
2124
|
-
export declare enum ST_RubyAlign {
|
|
2125
|
-
center = "center",
|
|
2126
|
-
distributeLetter = "distributeLetter",
|
|
2127
|
-
distributeSpace = "distributeSpace",
|
|
2128
|
-
left = "left",
|
|
2129
|
-
right = "right",
|
|
2130
|
-
rightVertical = "rightVertical"
|
|
2131
|
-
}
|
|
2132
|
-
export declare enum ST_Lock {
|
|
2133
|
-
sdtLocked = "sdtLocked",
|
|
2134
|
-
contentLocked = "contentLocked",
|
|
2135
|
-
unlocked = "unlocked",
|
|
2136
|
-
sdtContentLocked = "sdtContentLocked"
|
|
2137
|
-
}
|
|
2138
|
-
export declare enum ST_SdtDateMappingType {
|
|
2139
|
-
text = "text",
|
|
2140
|
-
date = "date",
|
|
2141
|
-
dateTime = "dateTime"
|
|
2142
|
-
}
|
|
2143
|
-
export declare enum ST_Direction {
|
|
2144
|
-
ltr = "ltr",
|
|
2145
|
-
rtl = "rtl"
|
|
2146
|
-
}
|
|
2147
|
-
export declare enum ST_TblWidth {
|
|
2148
|
-
nil = "nil",
|
|
2149
|
-
pct = "pct",
|
|
2150
|
-
dxa = "dxa",
|
|
2151
|
-
auto = "auto"
|
|
2152
|
-
}
|
|
78
|
+
export type ST_FFTextType = 'regular' | 'number' | 'date' | 'currentTime' | 'currentDate' | 'calculated';
|
|
79
|
+
export type ST_SectionMark = 'nextPage' | 'nextColumn' | 'continuous' | 'evenPage' | 'oddPage';
|
|
80
|
+
export type ST_NumberFormat = 'decimal' | 'upperRoman' | 'lowerRoman' | 'upperLetter' | 'lowerLetter' | 'ordinal' | 'cardinalText' | 'ordinalText' | 'hex' | 'chicago' | 'ideographDigital' | 'japaneseCounting' | 'aiueo' | 'iroha' | 'decimalFullWidth' | 'decimalHalfWidth' | 'japaneseLegal' | 'japaneseDigitalTenThousand' | 'decimalEnclosedCircle' | 'decimalFullWidth2' | 'aiueoFullWidth' | 'irohaFullWidth' | 'decimalZero' | 'bullet' | 'ganada' | 'chosung' | 'decimalEnclosedFullstop' | 'decimalEnclosedParen' | 'decimalEnclosedCircleChinese' | 'ideographEnclosedCircle' | 'ideographTraditional' | 'ideographZodiac' | 'ideographZodiacTraditional' | 'taiwaneseCounting' | 'ideographLegalTraditional' | 'taiwaneseCountingThousand' | 'taiwaneseDigital' | 'chineseCounting' | 'chineseLegalSimplified' | 'chineseCountingThousand' | 'koreanDigital' | 'koreanCounting' | 'koreanLegal' | 'koreanDigital2' | 'vietnameseCounting' | 'russianLower' | 'russianUpper' | 'none' | 'numberInDash' | 'hebrew1' | 'hebrew2' | 'arabicAlpha' | 'arabicAbjad' | 'hindiVowels' | 'hindiConsonants' | 'hindiNumbers' | 'hindiCounting' | 'thaiLetters' | 'thaiNumbers' | 'thaiCounting' | 'bahtText' | 'dollarText' | 'custom';
|
|
81
|
+
export type ST_PageOrientation = 'portrait' | 'landscape';
|
|
82
|
+
export type ST_PageBorderZOrder = 'front' | 'back';
|
|
83
|
+
export type ST_PageBorderDisplay = 'allPages' | 'firstPage' | 'notFirstPage';
|
|
84
|
+
export type ST_PageBorderOffset = 'page' | 'text';
|
|
85
|
+
export type ST_ChapterSep = 'hyphen' | 'period' | 'colon' | 'emDash' | 'enDash';
|
|
86
|
+
export type ST_LineNumberRestart = 'newPage' | 'newSection' | 'continuous';
|
|
87
|
+
export type ST_VerticalJc = 'top' | 'center' | 'both' | 'bottom';
|
|
88
|
+
export type ST_DocGrid = 'default' | 'lines' | 'linesAndChars' | 'snapToChars';
|
|
89
|
+
export type ST_HdrFtr = 'even' | 'default' | 'first';
|
|
90
|
+
export type ST_FtnEdn = 'normal' | 'separator' | 'continuationSeparator' | 'continuationNotice';
|
|
91
|
+
export type ST_BrType = 'page' | 'column' | 'textWrapping';
|
|
92
|
+
export type ST_BrClear = 'none' | 'left' | 'right' | 'all';
|
|
93
|
+
export type ST_PTabAlignment = 'left' | 'center' | 'right';
|
|
94
|
+
export type ST_PTabRelativeTo = 'margin' | 'indent';
|
|
95
|
+
export type ST_PTabLeader = 'none' | 'dot' | 'hyphen' | 'underscore' | 'middleDot';
|
|
96
|
+
export type ST_ProofErr = 'spellStart' | 'spellEnd' | 'gramStart' | 'gramEnd';
|
|
97
|
+
export type ST_EdGrp = 'none' | 'everyone' | 'administrators' | 'contributors' | 'editors' | 'owners' | 'current';
|
|
98
|
+
export type ST_Hint = 'default' | 'eastAsia';
|
|
99
|
+
export type ST_Theme = 'majorEastAsia' | 'majorBidi' | 'majorAscii' | 'majorHAnsi' | 'minorEastAsia' | 'minorBidi' | 'minorAscii' | 'minorHAnsi';
|
|
100
|
+
export type ST_RubyAlign = 'center' | 'distributeLetter' | 'distributeSpace' | 'left' | 'right' | 'rightVertical';
|
|
101
|
+
export type ST_Lock = 'sdtLocked' | 'contentLocked' | 'unlocked' | 'sdtContentLocked';
|
|
102
|
+
export type ST_SdtDateMappingType = 'text' | 'date' | 'dateTime';
|
|
103
|
+
export type ST_Direction = 'ltr' | 'rtl';
|
|
104
|
+
export type ST_TblWidth = 'nil' | 'pct' | 'dxa' | 'auto';
|
|
2153
105
|
export type ST_MeasurementOrPercent = ST_DecimalNumberOrPercent | ST_UniversalMeasure;
|
|
2154
|
-
export
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
export
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
}
|
|
2162
|
-
export declare enum ST_TblOverlap {
|
|
2163
|
-
never = "never",
|
|
2164
|
-
overlap = "overlap"
|
|
2165
|
-
}
|
|
2166
|
-
export declare enum ST_FtnPos {
|
|
2167
|
-
pageBottom = "pageBottom",
|
|
2168
|
-
beneathText = "beneathText",
|
|
2169
|
-
sectEnd = "sectEnd",
|
|
2170
|
-
docEnd = "docEnd"
|
|
2171
|
-
}
|
|
2172
|
-
export declare enum ST_EdnPos {
|
|
2173
|
-
sectEnd = "sectEnd",
|
|
2174
|
-
docEnd = "docEnd"
|
|
2175
|
-
}
|
|
2176
|
-
export declare enum ST_RestartNumber {
|
|
2177
|
-
continuous = "continuous",
|
|
2178
|
-
eachSect = "eachSect",
|
|
2179
|
-
eachPage = "eachPage"
|
|
2180
|
-
}
|
|
2181
|
-
export declare enum ST_MailMergeSourceType {
|
|
2182
|
-
database = "database",
|
|
2183
|
-
addressBook = "addressBook",
|
|
2184
|
-
document1 = "document1",
|
|
2185
|
-
document2 = "document2",
|
|
2186
|
-
text = "text",
|
|
2187
|
-
email = "email",
|
|
2188
|
-
native = "native",
|
|
2189
|
-
legacy = "legacy",
|
|
2190
|
-
master = "master"
|
|
2191
|
-
}
|
|
106
|
+
export type ST_Merge = 'continue' | 'restart';
|
|
107
|
+
export type ST_TblLayoutType = 'fixed' | 'autofit';
|
|
108
|
+
export type ST_TblOverlap = 'never' | 'overlap';
|
|
109
|
+
export type ST_FtnPos = 'pageBottom' | 'beneathText' | 'sectEnd' | 'docEnd';
|
|
110
|
+
export type ST_EdnPos = 'sectEnd' | 'docEnd';
|
|
111
|
+
export type ST_RestartNumber = 'continuous' | 'eachSect' | 'eachPage';
|
|
112
|
+
export type ST_MailMergeSourceType = 'database' | 'addressBook' | 'document1' | 'document2' | 'text' | 'email' | 'native' | 'legacy' | 'master';
|
|
2192
113
|
export type ST_TargetScreenSz = string;
|
|
2193
|
-
export
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
export
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
export
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
export
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
export
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
export
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
export
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
export
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
export
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
export
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
export
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
export
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
export
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
export
|
|
2299
|
-
none = "none",
|
|
2300
|
-
normal = "normal",
|
|
2301
|
-
autoExp = "autoExp",
|
|
2302
|
-
toolbar = "toolbar",
|
|
2303
|
-
speller = "speller",
|
|
2304
|
-
formFld = "formFld",
|
|
2305
|
-
bbPlcHdr = "bbPlcHdr"
|
|
2306
|
-
}
|
|
2307
|
-
export declare enum ST_DocPartGallery {
|
|
2308
|
-
placeholder = "placeholder",
|
|
2309
|
-
any = "any",
|
|
2310
|
-
default = "default",
|
|
2311
|
-
docParts = "docParts",
|
|
2312
|
-
coverPg = "coverPg",
|
|
2313
|
-
eq = "eq",
|
|
2314
|
-
ftrs = "ftrs",
|
|
2315
|
-
hdrs = "hdrs",
|
|
2316
|
-
pgNum = "pgNum",
|
|
2317
|
-
tbls = "tbls",
|
|
2318
|
-
watermarks = "watermarks",
|
|
2319
|
-
autoTxt = "autoTxt",
|
|
2320
|
-
txtBox = "txtBox",
|
|
2321
|
-
pgNumT = "pgNumT",
|
|
2322
|
-
pgNumB = "pgNumB",
|
|
2323
|
-
pgNumMargins = "pgNumMargins",
|
|
2324
|
-
tblOfContents = "tblOfContents",
|
|
2325
|
-
bib = "bib",
|
|
2326
|
-
custQuickParts = "custQuickParts",
|
|
2327
|
-
custCoverPg = "custCoverPg",
|
|
2328
|
-
custEq = "custEq",
|
|
2329
|
-
custFtrs = "custFtrs",
|
|
2330
|
-
custHdrs = "custHdrs",
|
|
2331
|
-
custPgNum = "custPgNum",
|
|
2332
|
-
custTbls = "custTbls",
|
|
2333
|
-
custWatermarks = "custWatermarks",
|
|
2334
|
-
custAutoTxt = "custAutoTxt",
|
|
2335
|
-
custTxtBox = "custTxtBox",
|
|
2336
|
-
custPgNumT = "custPgNumT",
|
|
2337
|
-
custPgNumB = "custPgNumB",
|
|
2338
|
-
custPgNumMargins = "custPgNumMargins",
|
|
2339
|
-
custTblOfContents = "custTblOfContents",
|
|
2340
|
-
custBib = "custBib",
|
|
2341
|
-
custom1 = "custom1",
|
|
2342
|
-
custom2 = "custom2",
|
|
2343
|
-
custom3 = "custom3",
|
|
2344
|
-
custom4 = "custom4",
|
|
2345
|
-
custom5 = "custom5"
|
|
2346
|
-
}
|
|
2347
|
-
export declare enum ST_CaptionPos {
|
|
2348
|
-
above = "above",
|
|
2349
|
-
below = "below",
|
|
2350
|
-
left = "left",
|
|
2351
|
-
right = "right"
|
|
2352
|
-
}
|
|
2353
|
-
export type EG_PContentBase = {
|
|
2354
|
-
customXml?: CT_CustomXmlRun;
|
|
2355
|
-
fldSimple?: CT_SimpleField;
|
|
2356
|
-
hyperlink?: CT_Hyperlink;
|
|
2357
|
-
};
|
|
2358
|
-
export type EG_ContentRunContentBase = {
|
|
2359
|
-
smartTag?: CT_SmartTagRun;
|
|
2360
|
-
sdt?: CT_SdtRun;
|
|
2361
|
-
};
|
|
2362
|
-
export type EG_CellMarkupElements = {
|
|
2363
|
-
cellIns?: CT_TrackChange;
|
|
2364
|
-
cellDel?: CT_TrackChange;
|
|
2365
|
-
cellMerge?: CT_CellMergeTrackChange;
|
|
2366
|
-
};
|
|
2367
|
-
export type EG_RangeMarkupElements = {
|
|
2368
|
-
bookmarkStart?: CT_Bookmark;
|
|
2369
|
-
bookmarkEnd?: CT_MarkupRange;
|
|
2370
|
-
moveFromRangeStart?: CT_MoveBookmark;
|
|
2371
|
-
moveFromRangeEnd?: CT_MarkupRange;
|
|
2372
|
-
moveToRangeStart?: CT_MoveBookmark;
|
|
2373
|
-
moveToRangeEnd?: CT_MarkupRange;
|
|
2374
|
-
commentRangeStart?: CT_MarkupRange;
|
|
2375
|
-
commentRangeEnd?: CT_MarkupRange;
|
|
2376
|
-
customXmlInsRangeStart?: CT_TrackChange;
|
|
2377
|
-
customXmlInsRangeEnd?: CT_Markup;
|
|
2378
|
-
customXmlDelRangeStart?: CT_TrackChange;
|
|
2379
|
-
customXmlDelRangeEnd?: CT_Markup;
|
|
2380
|
-
customXmlMoveFromRangeStart?: CT_TrackChange;
|
|
2381
|
-
customXmlMoveFromRangeEnd?: CT_Markup;
|
|
2382
|
-
customXmlMoveToRangeStart?: CT_TrackChange;
|
|
2383
|
-
customXmlMoveToRangeEnd?: CT_Markup;
|
|
2384
|
-
};
|
|
2385
|
-
export type EG_HdrFtrReferences = {
|
|
2386
|
-
headerReference?: CT_HdrFtrRef;
|
|
2387
|
-
footerReference?: CT_HdrFtrRef;
|
|
2388
|
-
};
|
|
2389
|
-
export type EG_RunInnerContent = {
|
|
2390
|
-
br?: CT_Br;
|
|
2391
|
-
t?: CT_Text;
|
|
2392
|
-
contentPart?: CT_Rel;
|
|
2393
|
-
delText?: CT_Text;
|
|
2394
|
-
instrText?: CT_Text;
|
|
2395
|
-
delInstrText?: CT_Text;
|
|
2396
|
-
noBreakHyphen?: CT_Empty;
|
|
2397
|
-
softHyphen?: CT_Empty;
|
|
2398
|
-
dayShort?: CT_Empty;
|
|
2399
|
-
monthShort?: CT_Empty;
|
|
2400
|
-
yearShort?: CT_Empty;
|
|
2401
|
-
dayLong?: CT_Empty;
|
|
2402
|
-
monthLong?: CT_Empty;
|
|
2403
|
-
yearLong?: CT_Empty;
|
|
2404
|
-
annotationRef?: CT_Empty;
|
|
2405
|
-
footnoteRef?: CT_Empty;
|
|
2406
|
-
endnoteRef?: CT_Empty;
|
|
2407
|
-
separator?: CT_Empty;
|
|
2408
|
-
continuationSeparator?: CT_Empty;
|
|
2409
|
-
sym?: CT_Sym;
|
|
2410
|
-
pgNum?: CT_Empty;
|
|
2411
|
-
cr?: CT_Empty;
|
|
2412
|
-
tab?: CT_Empty;
|
|
2413
|
-
object?: CT_Object;
|
|
2414
|
-
fldChar?: CT_FldChar;
|
|
2415
|
-
ruby?: CT_Ruby;
|
|
2416
|
-
footnoteReference?: CT_FtnEdnRef;
|
|
2417
|
-
endnoteReference?: CT_FtnEdnRef;
|
|
2418
|
-
commentReference?: CT_Markup;
|
|
2419
|
-
drawing?: CT_Drawing;
|
|
2420
|
-
ptab?: CT_PTab;
|
|
2421
|
-
lastRenderedPageBreak?: CT_Empty;
|
|
2422
|
-
};
|
|
2423
|
-
export type EG_RPrBase = {
|
|
2424
|
-
rStyle?: CT_String;
|
|
2425
|
-
rFonts?: CT_Fonts;
|
|
2426
|
-
b?: CT_OnOff;
|
|
2427
|
-
bCs?: CT_OnOff;
|
|
2428
|
-
i?: CT_OnOff;
|
|
2429
|
-
iCs?: CT_OnOff;
|
|
2430
|
-
caps?: CT_OnOff;
|
|
2431
|
-
smallCaps?: CT_OnOff;
|
|
2432
|
-
strike?: CT_OnOff;
|
|
2433
|
-
dstrike?: CT_OnOff;
|
|
2434
|
-
outline?: CT_OnOff;
|
|
2435
|
-
shadow?: CT_OnOff;
|
|
2436
|
-
emboss?: CT_OnOff;
|
|
2437
|
-
imprint?: CT_OnOff;
|
|
2438
|
-
noProof?: CT_OnOff;
|
|
2439
|
-
snapToGrid?: CT_OnOff;
|
|
2440
|
-
vanish?: CT_OnOff;
|
|
2441
|
-
webHidden?: CT_OnOff;
|
|
2442
|
-
color?: CT_Color;
|
|
2443
|
-
spacing?: CT_SignedTwipsMeasure;
|
|
2444
|
-
w?: CT_TextScale;
|
|
2445
|
-
kern?: CT_HpsMeasure;
|
|
2446
|
-
position?: CT_SignedHpsMeasure;
|
|
2447
|
-
sz?: CT_HpsMeasure;
|
|
2448
|
-
szCs?: CT_HpsMeasure;
|
|
2449
|
-
highlight?: CT_Highlight;
|
|
2450
|
-
u?: CT_Underline;
|
|
2451
|
-
effect?: CT_TextEffect;
|
|
2452
|
-
bdr?: CT_Border;
|
|
2453
|
-
shd?: CT_Shd;
|
|
2454
|
-
fitText?: CT_FitText;
|
|
2455
|
-
vertAlign?: CT_VerticalAlignRun;
|
|
2456
|
-
rtl?: CT_OnOff;
|
|
2457
|
-
cs?: CT_OnOff;
|
|
2458
|
-
em?: CT_Em;
|
|
2459
|
-
lang?: CT_Language;
|
|
2460
|
-
eastAsianLayout?: CT_EastAsianLayout;
|
|
2461
|
-
specVanish?: CT_OnOff;
|
|
2462
|
-
oMath?: CT_OnOff;
|
|
2463
|
-
};
|
|
2464
|
-
export type EG_RPrMath = {
|
|
2465
|
-
ins?: CT_MathCtrlIns;
|
|
2466
|
-
del?: CT_MathCtrlDel;
|
|
2467
|
-
};
|
|
2468
|
-
export type EG_RubyContent = {
|
|
2469
|
-
r?: CT_R;
|
|
2470
|
-
};
|
|
2471
|
-
export type EG_ContentRunContent = {
|
|
2472
|
-
customXml?: CT_CustomXmlRun;
|
|
2473
|
-
smartTag?: CT_SmartTagRun;
|
|
2474
|
-
sdt?: CT_SdtRun;
|
|
2475
|
-
dir?: CT_DirContentRun;
|
|
2476
|
-
bdo?: CT_BdoContentRun;
|
|
2477
|
-
r?: CT_R;
|
|
2478
|
-
};
|
|
2479
|
-
export type EG_ContentBlockContent = {
|
|
2480
|
-
customXml?: CT_CustomXmlBlock;
|
|
2481
|
-
sdt?: CT_SdtBlock;
|
|
2482
|
-
p?: CT_P;
|
|
2483
|
-
tbl?: CT_Tbl;
|
|
2484
|
-
};
|
|
2485
|
-
export type EG_ContentRowContent = {
|
|
2486
|
-
tr?: CT_Row;
|
|
2487
|
-
customXml?: CT_CustomXmlRow;
|
|
2488
|
-
sdt?: CT_SdtRow;
|
|
2489
|
-
};
|
|
2490
|
-
export type EG_ContentCellContent = {
|
|
2491
|
-
tc?: CT_Tc;
|
|
2492
|
-
customXml?: CT_CustomXmlCell;
|
|
2493
|
-
sdt?: CT_SdtCell;
|
|
2494
|
-
};
|
|
2495
|
-
export type EG_PContent = {
|
|
2496
|
-
fldSimple?: CT_SimpleField;
|
|
2497
|
-
hyperlink?: CT_Hyperlink;
|
|
2498
|
-
subDoc?: CT_Rel;
|
|
2499
|
-
};
|
|
2500
|
-
export type EG_MathContent = {};
|
|
2501
|
-
export type EG_BlockLevelElts = {
|
|
2502
|
-
altChunk?: CT_AltChunk;
|
|
2503
|
-
};
|
|
2504
|
-
export type EG_RunLevelElts = {
|
|
2505
|
-
proofErr?: CT_ProofErr;
|
|
2506
|
-
permStart?: CT_PermStart;
|
|
2507
|
-
permEnd?: CT_Perm;
|
|
2508
|
-
ins?: CT_RunTrackChange;
|
|
2509
|
-
del?: CT_RunTrackChange;
|
|
2510
|
-
moveFrom?: CT_RunTrackChange;
|
|
2511
|
-
moveTo?: CT_RunTrackChange;
|
|
2512
|
-
};
|
|
114
|
+
export type ST_CharacterSpacing = 'doNotCompress' | 'compressPunctuation' | 'compressPunctuationAndJapaneseKana';
|
|
115
|
+
export type ST_WmlColorSchemeIndex = 'dark1' | 'light1' | 'dark2' | 'light2' | 'accent1' | 'accent2' | 'accent3' | 'accent4' | 'accent5' | 'accent6' | 'hyperlink' | 'followedHyperlink';
|
|
116
|
+
export type ST_StyleSort = 'name' | 'priority' | 'default' | 'font' | 'basedOn' | 'type';
|
|
117
|
+
export type ST_FrameScrollbar = 'on' | 'off' | 'auto';
|
|
118
|
+
export type ST_FrameLayout = 'rows' | 'cols' | 'none';
|
|
119
|
+
export type ST_LevelSuffix = 'tab' | 'space' | 'nothing';
|
|
120
|
+
export type ST_MultiLevelType = 'singleLevel' | 'multilevel' | 'hybridMultilevel';
|
|
121
|
+
export type ST_TblStyleOverrideType = 'wholeTable' | 'firstRow' | 'lastRow' | 'firstCol' | 'lastCol' | 'band1Vert' | 'band2Vert' | 'band1Horz' | 'band2Horz' | 'neCell' | 'nwCell' | 'seCell' | 'swCell';
|
|
122
|
+
export type ST_StyleType = 'paragraph' | 'character' | 'table' | 'numbering';
|
|
123
|
+
export type ST_FontFamily = 'decorative' | 'modern' | 'roman' | 'script' | 'swiss' | 'auto';
|
|
124
|
+
export type ST_Pitch = 'fixed' | 'variable' | 'default';
|
|
125
|
+
export type ST_ThemeColor = 'dark1' | 'light1' | 'dark2' | 'light2' | 'accent1' | 'accent2' | 'accent3' | 'accent4' | 'accent5' | 'accent6' | 'hyperlink' | 'followedHyperlink' | 'none' | 'background1' | 'text1' | 'background2' | 'text2';
|
|
126
|
+
export type ST_DocPartBehavior = 'content' | 'p' | 'pg';
|
|
127
|
+
export type ST_DocPartType = 'none' | 'normal' | 'autoExp' | 'toolbar' | 'speller' | 'formFld' | 'bbPlcHdr';
|
|
128
|
+
export type ST_DocPartGallery = 'placeholder' | 'any' | 'default' | 'docParts' | 'coverPg' | 'eq' | 'ftrs' | 'hdrs' | 'pgNum' | 'tbls' | 'watermarks' | 'autoTxt' | 'txtBox' | 'pgNumT' | 'pgNumB' | 'pgNumMargins' | 'tblOfContents' | 'bib' | 'custQuickParts' | 'custCoverPg' | 'custEq' | 'custFtrs' | 'custHdrs' | 'custPgNum' | 'custTbls' | 'custWatermarks' | 'custAutoTxt' | 'custTxtBox' | 'custPgNumT' | 'custPgNumB' | 'custPgNumMargins' | 'custTblOfContents' | 'custBib' | 'custom1' | 'custom2' | 'custom3' | 'custom4' | 'custom5';
|
|
129
|
+
export type ST_CaptionPos = 'above' | 'below' | 'left' | 'right';
|
|
130
|
+
export type ST_StyleMatrixColumnIndex = number;
|
|
131
|
+
export type ST_FontCollectionIndex = 'major' | 'minor' | 'none';
|
|
132
|
+
export type ST_ColorSchemeIndex = 'dk1' | 'lt1' | 'dk2' | 'lt2' | 'accent1' | 'accent2' | 'accent3' | 'accent4' | 'accent5' | 'accent6' | 'hlink' | 'folHlink';
|
|
133
|
+
export type ST_Coordinate = ST_CoordinateUnqualified | ST_UniversalMeasure;
|
|
134
|
+
export type ST_CoordinateUnqualified = number;
|
|
135
|
+
export type ST_Coordinate32 = ST_Coordinate32Unqualified | ST_UniversalMeasure;
|
|
136
|
+
export type ST_Coordinate32Unqualified = number;
|
|
137
|
+
export type ST_PositiveCoordinate = number;
|
|
138
|
+
export type ST_PositiveCoordinate32 = ST_Coordinate32Unqualified;
|
|
139
|
+
export type ST_Angle = number;
|
|
140
|
+
export type ST_FixedAngle = ST_Angle;
|
|
141
|
+
export type ST_PositiveFixedAngle = ST_Angle;
|
|
142
|
+
export type ST_SystemColorVal = 'scrollBar' | 'background' | 'activeCaption' | 'inactiveCaption' | 'menu' | 'window' | 'windowFrame' | 'menuText' | 'windowText' | 'captionText' | 'activeBorder' | 'inactiveBorder' | 'appWorkspace' | 'highlight' | 'highlightText' | 'btnFace' | 'btnShadow' | 'grayText' | 'btnText' | 'inactiveCaptionText' | 'btnHighlight' | '3dDkShadow' | '3dLight' | 'infoText' | 'infoBk' | 'hotLight' | 'gradientActiveCaption' | 'gradientInactiveCaption' | 'menuHighlight' | 'menuBar';
|
|
143
|
+
export type ST_SchemeColorVal = 'bg1' | 'tx1' | 'bg2' | 'tx2' | 'accent1' | 'accent2' | 'accent3' | 'accent4' | 'accent5' | 'accent6' | 'hlink' | 'folHlink' | 'phClr' | 'dk1' | 'lt1' | 'dk2' | 'lt2';
|
|
144
|
+
export type ST_PresetColorVal = 'aliceBlue' | 'antiqueWhite' | 'aqua' | 'aquamarine' | 'azure' | 'beige' | 'bisque' | 'black' | 'blanchedAlmond' | 'blue' | 'blueViolet' | 'brown' | 'burlyWood' | 'cadetBlue' | 'chartreuse' | 'chocolate' | 'coral' | 'cornflowerBlue' | 'cornsilk' | 'crimson' | 'cyan' | 'darkBlue' | 'darkCyan' | 'darkGoldenrod' | 'darkGray' | 'darkGrey' | 'darkGreen' | 'darkKhaki' | 'darkMagenta' | 'darkOliveGreen' | 'darkOrange' | 'darkOrchid' | 'darkRed' | 'darkSalmon' | 'darkSeaGreen' | 'darkSlateBlue' | 'darkSlateGray' | 'darkSlateGrey' | 'darkTurquoise' | 'darkViolet' | 'dkBlue' | 'dkCyan' | 'dkGoldenrod' | 'dkGray' | 'dkGrey' | 'dkGreen' | 'dkKhaki' | 'dkMagenta' | 'dkOliveGreen' | 'dkOrange' | 'dkOrchid' | 'dkRed' | 'dkSalmon' | 'dkSeaGreen' | 'dkSlateBlue' | 'dkSlateGray' | 'dkSlateGrey' | 'dkTurquoise' | 'dkViolet' | 'deepPink' | 'deepSkyBlue' | 'dimGray' | 'dimGrey' | 'dodgerBlue' | 'firebrick' | 'floralWhite' | 'forestGreen' | 'fuchsia' | 'gainsboro' | 'ghostWhite' | 'gold' | 'goldenrod' | 'gray' | 'grey' | 'green' | 'greenYellow' | 'honeydew' | 'hotPink' | 'indianRed' | 'indigo' | 'ivory' | 'khaki' | 'lavender' | 'lavenderBlush' | 'lawnGreen' | 'lemonChiffon' | 'lightBlue' | 'lightCoral' | 'lightCyan' | 'lightGoldenrodYellow' | 'lightGray' | 'lightGrey' | 'lightGreen' | 'lightPink' | 'lightSalmon' | 'lightSeaGreen' | 'lightSkyBlue' | 'lightSlateGray' | 'lightSlateGrey' | 'lightSteelBlue' | 'lightYellow' | 'ltBlue' | 'ltCoral' | 'ltCyan' | 'ltGoldenrodYellow' | 'ltGray' | 'ltGrey' | 'ltGreen' | 'ltPink' | 'ltSalmon' | 'ltSeaGreen' | 'ltSkyBlue' | 'ltSlateGray' | 'ltSlateGrey' | 'ltSteelBlue' | 'ltYellow' | 'lime' | 'limeGreen' | 'linen' | 'magenta' | 'maroon' | 'medAquamarine' | 'medBlue' | 'medOrchid' | 'medPurple' | 'medSeaGreen' | 'medSlateBlue' | 'medSpringGreen' | 'medTurquoise' | 'medVioletRed' | 'mediumAquamarine' | 'mediumBlue' | 'mediumOrchid' | 'mediumPurple' | 'mediumSeaGreen' | 'mediumSlateBlue' | 'mediumSpringGreen' | 'mediumTurquoise' | 'mediumVioletRed' | 'midnightBlue' | 'mintCream' | 'mistyRose' | 'moccasin' | 'navajoWhite' | 'navy' | 'oldLace' | 'olive' | 'oliveDrab' | 'orange' | 'orangeRed' | 'orchid' | 'paleGoldenrod' | 'paleGreen' | 'paleTurquoise' | 'paleVioletRed' | 'papayaWhip' | 'peachPuff' | 'peru' | 'pink' | 'plum' | 'powderBlue' | 'purple' | 'red' | 'rosyBrown' | 'royalBlue' | 'saddleBrown' | 'salmon' | 'sandyBrown' | 'seaGreen' | 'seaShell' | 'sienna' | 'silver' | 'skyBlue' | 'slateBlue' | 'slateGray' | 'slateGrey' | 'snow' | 'springGreen' | 'steelBlue' | 'tan' | 'teal' | 'thistle' | 'tomato' | 'turquoise' | 'violet' | 'wheat' | 'white' | 'whiteSmoke' | 'yellow' | 'yellowGreen';
|
|
145
|
+
export type ST_RectAlignment = 'tl' | 't' | 'tr' | 'l' | 'ctr' | 'r' | 'bl' | 'b' | 'br';
|
|
146
|
+
export type ST_BlackWhiteMode = 'clr' | 'auto' | 'gray' | 'ltGray' | 'invGray' | 'grayWhite' | 'blackGray' | 'blackWhite' | 'black' | 'white' | 'hidden';
|
|
147
|
+
export type ST_DrawingElementId = number;
|
|
148
|
+
export type ST_ChartBuildStep = 'category' | 'ptInCategory' | 'series' | 'ptInSeries' | 'allPts' | 'gridLegend';
|
|
149
|
+
export type ST_DgmBuildStep = 'sp' | 'bg';
|
|
150
|
+
export type ST_AnimationBuildType = 'allAtOnce';
|
|
151
|
+
export type ST_AnimationDgmOnlyBuildType = 'one' | 'lvlOne' | 'lvlAtOnce';
|
|
152
|
+
export type ST_AnimationDgmBuildType = ST_AnimationBuildType | ST_AnimationDgmOnlyBuildType;
|
|
153
|
+
export type ST_AnimationChartOnlyBuildType = 'series' | 'category' | 'seriesEl' | 'categoryEl';
|
|
154
|
+
export type ST_AnimationChartBuildType = ST_AnimationBuildType | ST_AnimationChartOnlyBuildType;
|
|
155
|
+
export type ST_PresetCameraType = 'legacyObliqueTopLeft' | 'legacyObliqueTop' | 'legacyObliqueTopRight' | 'legacyObliqueLeft' | 'legacyObliqueFront' | 'legacyObliqueRight' | 'legacyObliqueBottomLeft' | 'legacyObliqueBottom' | 'legacyObliqueBottomRight' | 'legacyPerspectiveTopLeft' | 'legacyPerspectiveTop' | 'legacyPerspectiveTopRight' | 'legacyPerspectiveLeft' | 'legacyPerspectiveFront' | 'legacyPerspectiveRight' | 'legacyPerspectiveBottomLeft' | 'legacyPerspectiveBottom' | 'legacyPerspectiveBottomRight' | 'orthographicFront' | 'isometricTopUp' | 'isometricTopDown' | 'isometricBottomUp' | 'isometricBottomDown' | 'isometricLeftUp' | 'isometricLeftDown' | 'isometricRightUp' | 'isometricRightDown' | 'isometricOffAxis1Left' | 'isometricOffAxis1Right' | 'isometricOffAxis1Top' | 'isometricOffAxis2Left' | 'isometricOffAxis2Right' | 'isometricOffAxis2Top' | 'isometricOffAxis3Left' | 'isometricOffAxis3Right' | 'isometricOffAxis3Bottom' | 'isometricOffAxis4Left' | 'isometricOffAxis4Right' | 'isometricOffAxis4Bottom' | 'obliqueTopLeft' | 'obliqueTop' | 'obliqueTopRight' | 'obliqueLeft' | 'obliqueRight' | 'obliqueBottomLeft' | 'obliqueBottom' | 'obliqueBottomRight' | 'perspectiveFront' | 'perspectiveLeft' | 'perspectiveRight' | 'perspectiveAbove' | 'perspectiveBelow' | 'perspectiveAboveLeftFacing' | 'perspectiveAboveRightFacing' | 'perspectiveContrastingLeftFacing' | 'perspectiveContrastingRightFacing' | 'perspectiveHeroicLeftFacing' | 'perspectiveHeroicRightFacing' | 'perspectiveHeroicExtremeLeftFacing' | 'perspectiveHeroicExtremeRightFacing' | 'perspectiveRelaxed' | 'perspectiveRelaxedModerately';
|
|
156
|
+
export type ST_FOVAngle = ST_Angle;
|
|
157
|
+
export type ST_LightRigDirection = 'tl' | 't' | 'tr' | 'l' | 'r' | 'bl' | 'b' | 'br';
|
|
158
|
+
export type ST_LightRigType = 'legacyFlat1' | 'legacyFlat2' | 'legacyFlat3' | 'legacyFlat4' | 'legacyNormal1' | 'legacyNormal2' | 'legacyNormal3' | 'legacyNormal4' | 'legacyHarsh1' | 'legacyHarsh2' | 'legacyHarsh3' | 'legacyHarsh4' | 'threePt' | 'balanced' | 'soft' | 'harsh' | 'flood' | 'contrasting' | 'morning' | 'sunrise' | 'sunset' | 'chilly' | 'freezing' | 'flat' | 'twoPt' | 'glow' | 'brightRoom';
|
|
159
|
+
export type ST_BevelPresetType = 'relaxedInset' | 'circle' | 'slope' | 'cross' | 'angle' | 'softRound' | 'convex' | 'coolSlant' | 'divot' | 'riblet' | 'hardEdge' | 'artDeco';
|
|
160
|
+
export type ST_PresetMaterialType = 'legacyMatte' | 'legacyPlastic' | 'legacyMetal' | 'legacyWireframe' | 'matte' | 'plastic' | 'metal' | 'warmMatte' | 'translucentPowder' | 'powder' | 'dkEdge' | 'softEdge' | 'clear' | 'flat' | 'softmetal';
|
|
161
|
+
export type ST_PresetShadowVal = 'shdw1' | 'shdw2' | 'shdw3' | 'shdw4' | 'shdw5' | 'shdw6' | 'shdw7' | 'shdw8' | 'shdw9' | 'shdw10' | 'shdw11' | 'shdw12' | 'shdw13' | 'shdw14' | 'shdw15' | 'shdw16' | 'shdw17' | 'shdw18' | 'shdw19' | 'shdw20';
|
|
162
|
+
export type ST_PathShadeType = 'shape' | 'circle' | 'rect';
|
|
163
|
+
export type ST_TileFlipMode = 'none' | 'x' | 'y' | 'xy';
|
|
164
|
+
export type ST_BlipCompression = 'email' | 'screen' | 'print' | 'hqprint' | 'none';
|
|
165
|
+
export type ST_PresetPatternVal = 'pct5' | 'pct10' | 'pct20' | 'pct25' | 'pct30' | 'pct40' | 'pct50' | 'pct60' | 'pct70' | 'pct75' | 'pct80' | 'pct90' | 'horz' | 'vert' | 'ltHorz' | 'ltVert' | 'dkHorz' | 'dkVert' | 'narHorz' | 'narVert' | 'dashHorz' | 'dashVert' | 'cross' | 'dnDiag' | 'upDiag' | 'ltDnDiag' | 'ltUpDiag' | 'dkDnDiag' | 'dkUpDiag' | 'wdDnDiag' | 'wdUpDiag' | 'dashDnDiag' | 'dashUpDiag' | 'diagCross' | 'smCheck' | 'lgCheck' | 'smGrid' | 'lgGrid' | 'dotGrid' | 'smConfetti' | 'lgConfetti' | 'horzBrick' | 'diagBrick' | 'solidDmnd' | 'openDmnd' | 'dotDmnd' | 'plaid' | 'sphere' | 'weave' | 'divot' | 'shingle' | 'wave' | 'trellis' | 'zigZag';
|
|
166
|
+
export type ST_BlendMode = 'over' | 'mult' | 'screen' | 'darken' | 'lighten';
|
|
167
|
+
export type ST_EffectContainerType = 'sib' | 'tree';
|
|
168
|
+
export type ST_ShapeType = 'line' | 'lineInv' | 'triangle' | 'rtTriangle' | 'rect' | 'diamond' | 'parallelogram' | 'trapezoid' | 'nonIsoscelesTrapezoid' | 'pentagon' | 'hexagon' | 'heptagon' | 'octagon' | 'decagon' | 'dodecagon' | 'star4' | 'star5' | 'star6' | 'star7' | 'star8' | 'star10' | 'star12' | 'star16' | 'star24' | 'star32' | 'roundRect' | 'round1Rect' | 'round2SameRect' | 'round2DiagRect' | 'snipRoundRect' | 'snip1Rect' | 'snip2SameRect' | 'snip2DiagRect' | 'plaque' | 'ellipse' | 'teardrop' | 'homePlate' | 'chevron' | 'pieWedge' | 'pie' | 'blockArc' | 'donut' | 'noSmoking' | 'rightArrow' | 'leftArrow' | 'upArrow' | 'downArrow' | 'stripedRightArrow' | 'notchedRightArrow' | 'bentUpArrow' | 'leftRightArrow' | 'upDownArrow' | 'leftUpArrow' | 'leftRightUpArrow' | 'quadArrow' | 'leftArrowCallout' | 'rightArrowCallout' | 'upArrowCallout' | 'downArrowCallout' | 'leftRightArrowCallout' | 'upDownArrowCallout' | 'quadArrowCallout' | 'bentArrow' | 'uturnArrow' | 'circularArrow' | 'leftCircularArrow' | 'leftRightCircularArrow' | 'curvedRightArrow' | 'curvedLeftArrow' | 'curvedUpArrow' | 'curvedDownArrow' | 'swooshArrow' | 'cube' | 'can' | 'lightningBolt' | 'heart' | 'sun' | 'moon' | 'smileyFace' | 'irregularSeal1' | 'irregularSeal2' | 'foldedCorner' | 'bevel' | 'frame' | 'halfFrame' | 'corner' | 'diagStripe' | 'chord' | 'arc' | 'leftBracket' | 'rightBracket' | 'leftBrace' | 'rightBrace' | 'bracketPair' | 'bracePair' | 'straightConnector1' | 'bentConnector2' | 'bentConnector3' | 'bentConnector4' | 'bentConnector5' | 'curvedConnector2' | 'curvedConnector3' | 'curvedConnector4' | 'curvedConnector5' | 'callout1' | 'callout2' | 'callout3' | 'accentCallout1' | 'accentCallout2' | 'accentCallout3' | 'borderCallout1' | 'borderCallout2' | 'borderCallout3' | 'accentBorderCallout1' | 'accentBorderCallout2' | 'accentBorderCallout3' | 'wedgeRectCallout' | 'wedgeRoundRectCallout' | 'wedgeEllipseCallout' | 'cloudCallout' | 'cloud' | 'ribbon' | 'ribbon2' | 'ellipseRibbon' | 'ellipseRibbon2' | 'leftRightRibbon' | 'verticalScroll' | 'horizontalScroll' | 'wave' | 'doubleWave' | 'plus' | 'flowChartProcess' | 'flowChartDecision' | 'flowChartInputOutput' | 'flowChartPredefinedProcess' | 'flowChartInternalStorage' | 'flowChartDocument' | 'flowChartMultidocument' | 'flowChartTerminator' | 'flowChartPreparation' | 'flowChartManualInput' | 'flowChartManualOperation' | 'flowChartConnector' | 'flowChartPunchedCard' | 'flowChartPunchedTape' | 'flowChartSummingJunction' | 'flowChartOr' | 'flowChartCollate' | 'flowChartSort' | 'flowChartExtract' | 'flowChartMerge' | 'flowChartOfflineStorage' | 'flowChartOnlineStorage' | 'flowChartMagneticTape' | 'flowChartMagneticDisk' | 'flowChartMagneticDrum' | 'flowChartDisplay' | 'flowChartDelay' | 'flowChartAlternateProcess' | 'flowChartOffpageConnector' | 'actionButtonBlank' | 'actionButtonHome' | 'actionButtonHelp' | 'actionButtonInformation' | 'actionButtonForwardNext' | 'actionButtonBackPrevious' | 'actionButtonEnd' | 'actionButtonBeginning' | 'actionButtonReturn' | 'actionButtonDocument' | 'actionButtonSound' | 'actionButtonMovie' | 'gear6' | 'gear9' | 'funnel' | 'mathPlus' | 'mathMinus' | 'mathMultiply' | 'mathDivide' | 'mathEqual' | 'mathNotEqual' | 'cornerTabs' | 'squareTabs' | 'plaqueTabs' | 'chartX' | 'chartStar' | 'chartPlus';
|
|
169
|
+
export type ST_TextShapeType = 'textNoShape' | 'textPlain' | 'textStop' | 'textTriangle' | 'textTriangleInverted' | 'textChevron' | 'textChevronInverted' | 'textRingInside' | 'textRingOutside' | 'textArchUp' | 'textArchDown' | 'textCircle' | 'textButton' | 'textArchUpPour' | 'textArchDownPour' | 'textCirclePour' | 'textButtonPour' | 'textCurveUp' | 'textCurveDown' | 'textCanUp' | 'textCanDown' | 'textWave1' | 'textWave2' | 'textDoubleWave1' | 'textWave4' | 'textInflate' | 'textDeflate' | 'textInflateBottom' | 'textDeflateBottom' | 'textInflateTop' | 'textDeflateTop' | 'textDeflateInflate' | 'textDeflateInflateDeflate' | 'textFadeRight' | 'textFadeLeft' | 'textFadeUp' | 'textFadeDown' | 'textSlantUp' | 'textSlantDown' | 'textCascadeUp' | 'textCascadeDown';
|
|
170
|
+
export type ST_GeomGuideName = string;
|
|
171
|
+
export type ST_GeomGuideFormula = string;
|
|
172
|
+
export type ST_AdjCoordinate = ST_Coordinate | ST_GeomGuideName;
|
|
173
|
+
export type ST_AdjAngle = ST_Angle | ST_GeomGuideName;
|
|
174
|
+
export type ST_PathFillMode = 'none' | 'norm' | 'lighten' | 'lightenLess' | 'darken' | 'darkenLess';
|
|
175
|
+
export type ST_LineEndType = 'none' | 'triangle' | 'stealth' | 'diamond' | 'oval' | 'arrow';
|
|
176
|
+
export type ST_LineEndWidth = 'sm' | 'med' | 'lg';
|
|
177
|
+
export type ST_LineEndLength = 'sm' | 'med' | 'lg';
|
|
178
|
+
export type ST_PresetLineDashVal = 'solid' | 'dot' | 'dash' | 'lgDash' | 'dashDot' | 'lgDashDot' | 'lgDashDotDot' | 'sysDash' | 'sysDot' | 'sysDashDot' | 'sysDashDotDot';
|
|
179
|
+
export type ST_LineCap = 'rnd' | 'sq' | 'flat';
|
|
180
|
+
export type ST_LineWidth = ST_Coordinate32Unqualified;
|
|
181
|
+
export type ST_PenAlignment = 'ctr' | 'in';
|
|
182
|
+
export type ST_CompoundLine = 'sng' | 'dbl' | 'thickThin' | 'thinThick' | 'tri';
|
|
183
|
+
export type ST_ShapeID = string;
|
|
184
|
+
export type ST_OnOffStyleType = 'on' | 'off' | 'def';
|
|
185
|
+
export type ST_TextAnchoringType = 't' | 'ctr' | 'b' | 'just' | 'dist';
|
|
186
|
+
export type ST_TextVertOverflowType = 'overflow' | 'ellipsis' | 'clip';
|
|
187
|
+
export type ST_TextHorzOverflowType = 'overflow' | 'clip';
|
|
188
|
+
export type ST_TextVerticalType = 'horz' | 'vert' | 'vert270' | 'wordArtVert' | 'eaVert' | 'mongolianVert' | 'wordArtVertRtl';
|
|
189
|
+
export type ST_TextWrappingType = 'none' | 'square';
|
|
190
|
+
export type ST_TextColumnCount = number;
|
|
191
|
+
export type ST_TextFontScalePercentOrPercentString = ST_Percentage;
|
|
192
|
+
export type ST_TextBulletStartAtNum = number;
|
|
193
|
+
export type ST_TextAutonumberScheme = 'alphaLcParenBoth' | 'alphaUcParenBoth' | 'alphaLcParenR' | 'alphaUcParenR' | 'alphaLcPeriod' | 'alphaUcPeriod' | 'arabicParenBoth' | 'arabicParenR' | 'arabicPeriod' | 'arabicPlain' | 'romanLcParenBoth' | 'romanUcParenBoth' | 'romanLcParenR' | 'romanUcParenR' | 'romanLcPeriod' | 'romanUcPeriod' | 'circleNumDbPlain' | 'circleNumWdBlackPlain' | 'circleNumWdWhitePlain' | 'arabicDbPeriod' | 'arabicDbPlain' | 'ea1ChsPeriod' | 'ea1ChsPlain' | 'ea1ChtPeriod' | 'ea1ChtPlain' | 'ea1JpnChsDbPeriod' | 'ea1JpnKorPlain' | 'ea1JpnKorPeriod' | 'arabic1Minus' | 'arabic2Minus' | 'hebrew2Minus' | 'thaiAlphaPeriod' | 'thaiAlphaParenR' | 'thaiAlphaParenBoth' | 'thaiNumPeriod' | 'thaiNumParenR' | 'thaiNumParenBoth' | 'hindiAlphaPeriod' | 'hindiNumPeriod' | 'hindiNumParenR' | 'hindiAlpha1Period';
|
|
194
|
+
export type ST_TextBulletSize = ST_TextBulletSizePercent;
|
|
195
|
+
export type ST_TextBulletSizePercent = string;
|
|
196
|
+
export type ST_TextPoint = ST_TextPointUnqualified | ST_UniversalMeasure;
|
|
197
|
+
export type ST_TextPointUnqualified = number;
|
|
198
|
+
export type ST_TextNonNegativePoint = number;
|
|
199
|
+
export type ST_TextFontSize = number;
|
|
200
|
+
export type ST_TextTypeface = string;
|
|
201
|
+
export type ST_PitchFamily = number;
|
|
202
|
+
export type ST_TextUnderlineType = 'none' | 'words' | 'sng' | 'dbl' | 'heavy' | 'dotted' | 'dottedHeavy' | 'dash' | 'dashHeavy' | 'dashLong' | 'dashLongHeavy' | 'dotDash' | 'dotDashHeavy' | 'dotDotDash' | 'dotDotDashHeavy' | 'wavy' | 'wavyHeavy' | 'wavyDbl';
|
|
203
|
+
export type ST_TextStrikeType = 'noStrike' | 'sngStrike' | 'dblStrike';
|
|
204
|
+
export type ST_TextCapsType = 'none' | 'small' | 'all';
|
|
205
|
+
export type ST_TextSpacingPoint = number;
|
|
206
|
+
export type ST_TextSpacingPercentOrPercentString = ST_Percentage;
|
|
207
|
+
export type ST_TextMargin = ST_Coordinate32Unqualified;
|
|
208
|
+
export type ST_TextIndent = ST_Coordinate32Unqualified;
|
|
209
|
+
export type ST_TextTabAlignType = 'l' | 'ctr' | 'r' | 'dec';
|
|
210
|
+
export type ST_TextAlignType = 'l' | 'ctr' | 'r' | 'just' | 'justLow' | 'dist' | 'thaiDist';
|
|
211
|
+
export type ST_TextFontAlignType = 'auto' | 't' | 'ctr' | 'base' | 'b';
|
|
212
|
+
export type ST_TextIndentLevelType = number;
|
|
213
|
+
export type ST_WrapDistance = number;
|
|
214
|
+
export type ST_WrapText = 'bothSides' | 'left' | 'right' | 'largest';
|
|
215
|
+
export type ST_PositionOffset = number;
|
|
216
|
+
export type ST_AlignH = 'left' | 'right' | 'center' | 'inside' | 'outside';
|
|
217
|
+
export type ST_RelFromH = 'margin' | 'page' | 'column' | 'character' | 'leftMargin' | 'rightMargin' | 'insideMargin' | 'outsideMargin';
|
|
218
|
+
export type ST_AlignV = 'top' | 'bottom' | 'center' | 'inside' | 'outside';
|
|
219
|
+
export type ST_RelFromV = 'margin' | 'page' | 'paragraph' | 'line' | 'topMargin' | 'bottomMargin' | 'insideMargin' | 'outsideMargin';
|