office-viewer 0.1.0
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 +23 -0
- package/esm/OpenXML.d.ts +21 -0
- package/esm/OpenXML.js +60 -0
- package/esm/Word.d.ts +208 -0
- package/esm/Word.js +370 -0
- package/esm/index.d.ts +6 -0
- package/esm/index.js +6 -0
- package/esm/node_modules/tslib/tslib.es6.js +120 -0
- package/esm/openxml/ContentType.d.ts +12 -0
- package/esm/openxml/ContentType.js +15 -0
- package/esm/openxml/Style.d.ts +41 -0
- package/esm/openxml/Style.js +156 -0
- package/esm/openxml/Theme.d.ts +26 -0
- package/esm/openxml/Theme.js +69 -0
- package/esm/openxml/Types.d.ts +2512 -0
- package/esm/openxml/Types.js +1003 -0
- package/esm/openxml/word/Background.d.ts +11 -0
- package/esm/openxml/word/Body.d.ts +18 -0
- package/esm/openxml/word/Body.js +67 -0
- package/esm/openxml/word/Bookmark.d.ts +6 -0
- package/esm/openxml/word/Bookmark.js +18 -0
- package/esm/openxml/word/Border.d.ts +10 -0
- package/esm/openxml/word/Break.d.ts +13 -0
- package/esm/openxml/word/Break.js +19 -0
- package/esm/openxml/word/CustomXml.d.ts +8 -0
- package/esm/openxml/word/FldSimple.d.ts +7 -0
- package/esm/openxml/word/FldSimple.js +15 -0
- package/esm/openxml/word/FrameProperties.d.ts +18 -0
- package/esm/openxml/word/Hyperlink.d.ts +13 -0
- package/esm/openxml/word/Hyperlink.js +53 -0
- package/esm/openxml/word/Indent.d.ts +8 -0
- package/esm/openxml/word/InlineText.d.ts +14 -0
- package/esm/openxml/word/InlineText.js +62 -0
- package/esm/openxml/word/InstrText.d.ts +4 -0
- package/esm/openxml/word/InstrText.js +8 -0
- package/esm/openxml/word/Paragraph.d.ts +34 -0
- package/esm/openxml/word/Paragraph.js +133 -0
- package/esm/openxml/word/Pict.d.ts +6 -0
- package/esm/openxml/word/Pict.js +19 -0
- package/esm/openxml/word/Ruby.d.ts +20 -0
- package/esm/openxml/word/Ruby.js +87 -0
- package/esm/openxml/word/Run.d.ts +31 -0
- package/esm/openxml/word/Run.js +98 -0
- package/esm/openxml/word/Section.d.ts +38 -0
- package/esm/openxml/word/Section.js +59 -0
- package/esm/openxml/word/Shading.d.ts +9 -0
- package/esm/openxml/word/SmartTag.d.ts +8 -0
- package/esm/openxml/word/SmartTag.js +18 -0
- package/esm/openxml/word/Spacing.d.ts +9 -0
- package/esm/openxml/word/Sym.d.ts +8 -0
- package/esm/openxml/word/Sym.js +16 -0
- package/esm/openxml/word/Tab.d.ts +8 -0
- package/esm/openxml/word/Tab.js +17 -0
- package/esm/openxml/word/Table.d.ts +49 -0
- package/esm/openxml/word/Table.js +248 -0
- package/esm/openxml/word/VerticalAlign.d.ts +6 -0
- package/esm/openxml/word/WDocument.d.ts +13 -0
- package/esm/openxml/word/WDocument.js +58 -0
- package/esm/openxml/word/drawing/Blip.d.ts +6 -0
- package/esm/openxml/word/drawing/Blip.js +17 -0
- package/esm/openxml/word/drawing/BlipFill.d.ts +9 -0
- package/esm/openxml/word/drawing/BlipFill.js +20 -0
- package/esm/openxml/word/drawing/Drawing.d.ts +6 -0
- package/esm/openxml/word/drawing/Drawing.js +15 -0
- package/esm/openxml/word/drawing/Pic.d.ts +8 -0
- package/esm/openxml/word/drawing/Pic.js +16 -0
- package/esm/openxml/word/drawing/ShapeProperties.d.ts +9 -0
- package/esm/openxml/word/drawing/ShapeProperties.js +20 -0
- package/esm/openxml/word/drawing/Transform.d.ts +17 -0
- package/esm/openxml/word/drawing/Transform.js +30 -0
- package/esm/openxml/word/numbering/AbstractNum.d.ts +13 -0
- package/esm/openxml/word/numbering/AbstractNum.js +42 -0
- package/esm/openxml/word/numbering/Lvl.d.ts +16 -0
- package/esm/openxml/word/numbering/Lvl.js +62 -0
- package/esm/openxml/word/numbering/Num.d.ts +10 -0
- package/esm/openxml/word/numbering/Num.js +46 -0
- package/esm/openxml/word/numbering/NumberProperties.d.ts +6 -0
- package/esm/openxml/word/numbering/NumberProperties.js +21 -0
- package/esm/openxml/word/numbering/Numbering.d.ts +9 -0
- package/esm/openxml/word/numbering/Numbering.js +50 -0
- package/esm/openxml/word/properties/Properties.d.ts +12 -0
- package/esm/openxml/word/table/Tc.d.ts +46 -0
- package/esm/openxml/word/table/Tc.js +234 -0
- package/esm/openxml/word/table/Tr.d.ts +18 -0
- package/esm/openxml/word/table/Tr.js +106 -0
- package/esm/package/PackageParser.d.ts +26 -0
- package/esm/package/XMLPackageParser.d.ts +31 -0
- package/esm/package/ZipPackageParser.d.ts +29 -0
- package/esm/package/ZipPackageParser.js +70 -0
- package/esm/parse/jcToTextAlign.d.ts +5 -0
- package/esm/parse/jcToTextAlign.js +21 -0
- package/esm/parse/parseBorder.d.ts +13 -0
- package/esm/parse/parseBorder.js +78 -0
- package/esm/parse/parseColor.d.ts +22 -0
- package/esm/parse/parseColor.js +131 -0
- package/esm/parse/parseFont.d.ts +7 -0
- package/esm/parse/parseFont.js +54 -0
- package/esm/parse/parseInd.d.ts +5 -0
- package/esm/parse/parseInd.js +27 -0
- package/esm/parse/parsePr.d.ts +8 -0
- package/esm/parse/parsePr.js +325 -0
- package/esm/parse/parseRelationship.d.ts +12 -0
- package/esm/parse/parseRelationship.js +40 -0
- package/esm/parse/parseSize.d.ts +27 -0
- package/esm/parse/parseSize.js +38 -0
- package/esm/parse/parseSpacing.d.ts +7 -0
- package/esm/parse/parseSpacing.js +43 -0
- package/esm/parse/parseTextDirection.d.ts +2 -0
- package/esm/parse/parseTextDirection.js +25 -0
- package/esm/parse/parseTrHeight.d.ts +2 -0
- package/esm/parse/parseTrHeight.js +17 -0
- package/esm/render/renderBody.d.ts +6 -0
- package/esm/render/renderBody.js +53 -0
- package/esm/render/renderBookmark.d.ts +6 -0
- package/esm/render/renderBookmark.js +17 -0
- package/esm/render/renderBr.d.ts +7 -0
- package/esm/render/renderBr.js +13 -0
- package/esm/render/renderDocument.d.ts +7 -0
- package/esm/render/renderDocument.js +14 -0
- package/esm/render/renderDrawing.d.ts +8 -0
- package/esm/render/renderDrawing.js +38 -0
- package/esm/render/renderHyperLink.d.ts +7 -0
- package/esm/render/renderHyperLink.js +41 -0
- package/esm/render/renderInlineText.d.ts +6 -0
- package/esm/render/renderInlineText.js +39 -0
- package/esm/render/renderInstrText.d.ts +8 -0
- package/esm/render/renderInstrText.js +40 -0
- package/esm/render/renderNumbering.d.ts +7 -0
- package/esm/render/renderNumbering.js +161 -0
- package/esm/render/renderParagraph.d.ts +7 -0
- package/esm/render/renderParagraph.js +78 -0
- package/esm/render/renderPict.d.ts +6 -0
- package/esm/render/renderPict.js +19 -0
- package/esm/render/renderRuby.d.ts +6 -0
- package/esm/render/renderRuby.js +53 -0
- package/esm/render/renderRun.d.ts +14 -0
- package/esm/render/renderRun.js +116 -0
- package/esm/render/renderSection.d.ts +6 -0
- package/esm/render/renderSection.js +36 -0
- package/esm/render/renderStyle.d.ts +13 -0
- package/esm/render/renderStyle.js +194 -0
- package/esm/render/renderSym.d.ts +3 -0
- package/esm/render/renderSym.js +10 -0
- package/esm/render/renderTab.d.ts +7 -0
- package/esm/render/renderTab.js +19 -0
- package/esm/render/renderTable.d.ts +6 -0
- package/esm/render/renderTable.js +186 -0
- package/esm/render/setElementStyle.d.ts +6 -0
- package/esm/render/setElementStyle.js +21 -0
- package/esm/util/autoSpace.d.ts +5 -0
- package/esm/util/autoSpace.js +33 -0
- package/esm/util/blob.d.ts +9 -0
- package/esm/util/blob.js +39 -0
- package/esm/util/dom.d.ts +36 -0
- package/esm/util/dom.js +63 -0
- package/esm/util/mergeRun.d.ts +17 -0
- package/esm/util/mergeRun.js +134 -0
- package/esm/util/xml.d.ts +8 -0
- package/esm/util/xml.js +12 -0
- package/lib/OpenXML.d.ts +21 -0
- package/lib/OpenXML.js +69 -0
- package/lib/Word.d.ts +208 -0
- package/lib/Word.js +374 -0
- package/lib/index.d.ts +6 -0
- package/lib/index.js +10 -0
- package/lib/node_modules/tslib/tslib.es6.js +129 -0
- package/lib/openxml/ContentType.d.ts +12 -0
- package/lib/openxml/ContentType.js +19 -0
- package/lib/openxml/Style.d.ts +41 -0
- package/lib/openxml/Style.js +160 -0
- package/lib/openxml/Theme.d.ts +26 -0
- package/lib/openxml/Theme.js +73 -0
- package/lib/openxml/Types.d.ts +2512 -0
- package/lib/openxml/Types.js +1005 -0
- package/lib/openxml/word/Background.d.ts +11 -0
- package/lib/openxml/word/Body.d.ts +18 -0
- package/lib/openxml/word/Body.js +71 -0
- package/lib/openxml/word/Bookmark.d.ts +6 -0
- package/lib/openxml/word/Bookmark.js +22 -0
- package/lib/openxml/word/Border.d.ts +10 -0
- package/lib/openxml/word/Break.d.ts +13 -0
- package/lib/openxml/word/Break.js +23 -0
- package/lib/openxml/word/CustomXml.d.ts +8 -0
- package/lib/openxml/word/FldSimple.d.ts +7 -0
- package/lib/openxml/word/FldSimple.js +19 -0
- package/lib/openxml/word/FrameProperties.d.ts +18 -0
- package/lib/openxml/word/Hyperlink.d.ts +13 -0
- package/lib/openxml/word/Hyperlink.js +57 -0
- package/lib/openxml/word/Indent.d.ts +8 -0
- package/lib/openxml/word/InlineText.d.ts +14 -0
- package/lib/openxml/word/InlineText.js +66 -0
- package/lib/openxml/word/InstrText.d.ts +4 -0
- package/lib/openxml/word/InstrText.js +12 -0
- package/lib/openxml/word/Paragraph.d.ts +34 -0
- package/lib/openxml/word/Paragraph.js +137 -0
- package/lib/openxml/word/Pict.d.ts +6 -0
- package/lib/openxml/word/Pict.js +23 -0
- package/lib/openxml/word/Ruby.d.ts +20 -0
- package/lib/openxml/word/Ruby.js +91 -0
- package/lib/openxml/word/Run.d.ts +31 -0
- package/lib/openxml/word/Run.js +103 -0
- package/lib/openxml/word/Section.d.ts +38 -0
- package/lib/openxml/word/Section.js +63 -0
- package/lib/openxml/word/Shading.d.ts +9 -0
- package/lib/openxml/word/SmartTag.d.ts +8 -0
- package/lib/openxml/word/SmartTag.js +22 -0
- package/lib/openxml/word/Spacing.d.ts +9 -0
- package/lib/openxml/word/Sym.d.ts +8 -0
- package/lib/openxml/word/Sym.js +20 -0
- package/lib/openxml/word/Tab.d.ts +8 -0
- package/lib/openxml/word/Tab.js +21 -0
- package/lib/openxml/word/Table.d.ts +49 -0
- package/lib/openxml/word/Table.js +252 -0
- package/lib/openxml/word/VerticalAlign.d.ts +6 -0
- package/lib/openxml/word/WDocument.d.ts +13 -0
- package/lib/openxml/word/WDocument.js +62 -0
- package/lib/openxml/word/drawing/Blip.d.ts +6 -0
- package/lib/openxml/word/drawing/Blip.js +21 -0
- package/lib/openxml/word/drawing/BlipFill.d.ts +9 -0
- package/lib/openxml/word/drawing/BlipFill.js +24 -0
- package/lib/openxml/word/drawing/Drawing.d.ts +6 -0
- package/lib/openxml/word/drawing/Drawing.js +19 -0
- package/lib/openxml/word/drawing/Pic.d.ts +8 -0
- package/lib/openxml/word/drawing/Pic.js +20 -0
- package/lib/openxml/word/drawing/ShapeProperties.d.ts +9 -0
- package/lib/openxml/word/drawing/ShapeProperties.js +24 -0
- package/lib/openxml/word/drawing/Transform.d.ts +17 -0
- package/lib/openxml/word/drawing/Transform.js +34 -0
- package/lib/openxml/word/numbering/AbstractNum.d.ts +13 -0
- package/lib/openxml/word/numbering/AbstractNum.js +46 -0
- package/lib/openxml/word/numbering/Lvl.d.ts +16 -0
- package/lib/openxml/word/numbering/Lvl.js +66 -0
- package/lib/openxml/word/numbering/Num.d.ts +10 -0
- package/lib/openxml/word/numbering/Num.js +50 -0
- package/lib/openxml/word/numbering/NumberProperties.d.ts +6 -0
- package/lib/openxml/word/numbering/NumberProperties.js +25 -0
- package/lib/openxml/word/numbering/Numbering.d.ts +9 -0
- package/lib/openxml/word/numbering/Numbering.js +54 -0
- package/lib/openxml/word/properties/Properties.d.ts +12 -0
- package/lib/openxml/word/table/Tc.d.ts +46 -0
- package/lib/openxml/word/table/Tc.js +242 -0
- package/lib/openxml/word/table/Tr.d.ts +18 -0
- package/lib/openxml/word/table/Tr.js +110 -0
- package/lib/package/PackageParser.d.ts +26 -0
- package/lib/package/XMLPackageParser.d.ts +31 -0
- package/lib/package/ZipPackageParser.d.ts +29 -0
- package/lib/package/ZipPackageParser.js +74 -0
- package/lib/parse/jcToTextAlign.d.ts +5 -0
- package/lib/parse/jcToTextAlign.js +25 -0
- package/lib/parse/parseBorder.d.ts +13 -0
- package/lib/parse/parseBorder.js +83 -0
- package/lib/parse/parseColor.d.ts +22 -0
- package/lib/parse/parseColor.js +137 -0
- package/lib/parse/parseFont.d.ts +7 -0
- package/lib/parse/parseFont.js +58 -0
- package/lib/parse/parseInd.d.ts +5 -0
- package/lib/parse/parseInd.js +31 -0
- package/lib/parse/parsePr.d.ts +8 -0
- package/lib/parse/parsePr.js +329 -0
- package/lib/parse/parseRelationship.d.ts +12 -0
- package/lib/parse/parseRelationship.js +45 -0
- package/lib/parse/parseSize.d.ts +27 -0
- package/lib/parse/parseSize.js +44 -0
- package/lib/parse/parseSpacing.d.ts +7 -0
- package/lib/parse/parseSpacing.js +47 -0
- package/lib/parse/parseTextDirection.d.ts +2 -0
- package/lib/parse/parseTextDirection.js +29 -0
- package/lib/parse/parseTrHeight.d.ts +2 -0
- package/lib/parse/parseTrHeight.js +21 -0
- package/lib/render/renderBody.d.ts +6 -0
- package/lib/render/renderBody.js +57 -0
- package/lib/render/renderBookmark.d.ts +6 -0
- package/lib/render/renderBookmark.js +21 -0
- package/lib/render/renderBr.d.ts +7 -0
- package/lib/render/renderBr.js +17 -0
- package/lib/render/renderDocument.d.ts +7 -0
- package/lib/render/renderDocument.js +18 -0
- package/lib/render/renderDrawing.d.ts +8 -0
- package/lib/render/renderDrawing.js +42 -0
- package/lib/render/renderHyperLink.d.ts +7 -0
- package/lib/render/renderHyperLink.js +45 -0
- package/lib/render/renderInlineText.d.ts +6 -0
- package/lib/render/renderInlineText.js +43 -0
- package/lib/render/renderInstrText.d.ts +8 -0
- package/lib/render/renderInstrText.js +44 -0
- package/lib/render/renderNumbering.d.ts +7 -0
- package/lib/render/renderNumbering.js +165 -0
- package/lib/render/renderParagraph.d.ts +7 -0
- package/lib/render/renderParagraph.js +82 -0
- package/lib/render/renderPict.d.ts +6 -0
- package/lib/render/renderPict.js +23 -0
- package/lib/render/renderRuby.d.ts +6 -0
- package/lib/render/renderRuby.js +57 -0
- package/lib/render/renderRun.d.ts +14 -0
- package/lib/render/renderRun.js +121 -0
- package/lib/render/renderSection.d.ts +6 -0
- package/lib/render/renderSection.js +40 -0
- package/lib/render/renderStyle.d.ts +13 -0
- package/lib/render/renderStyle.js +199 -0
- package/lib/render/renderSym.d.ts +3 -0
- package/lib/render/renderSym.js +14 -0
- package/lib/render/renderTab.d.ts +7 -0
- package/lib/render/renderTab.js +23 -0
- package/lib/render/renderTable.d.ts +6 -0
- package/lib/render/renderTable.js +190 -0
- package/lib/render/setElementStyle.d.ts +6 -0
- package/lib/render/setElementStyle.js +25 -0
- package/lib/util/autoSpace.d.ts +5 -0
- package/lib/util/autoSpace.js +37 -0
- package/lib/util/blob.d.ts +9 -0
- package/lib/util/blob.js +44 -0
- package/lib/util/dom.d.ts +36 -0
- package/lib/util/dom.js +72 -0
- package/lib/util/mergeRun.d.ts +17 -0
- package/lib/util/mergeRun.js +140 -0
- package/lib/util/xml.d.ts +8 -0
- package/lib/util/xml.js +16 -0
- package/package.json +91 -0
|
@@ -0,0 +1,2512 @@
|
|
|
1
|
+
/** generated by tools/xsd2ts.ts, do not edit */
|
|
2
|
+
export type ST_Lang = string;
|
|
3
|
+
export type ST_HexColorRGB = string;
|
|
4
|
+
export type ST_Panose = string;
|
|
5
|
+
export declare enum ST_CalendarType {
|
|
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
|
+
}
|
|
21
|
+
export type ST_Guid = string;
|
|
22
|
+
export type ST_OnOff = boolean;
|
|
23
|
+
export type ST_String = string;
|
|
24
|
+
export type ST_XmlName = string;
|
|
25
|
+
export type ST_UnsignedDecimalNumber = number;
|
|
26
|
+
export type ST_TwipsMeasure = ST_UnsignedDecimalNumber | ST_PositiveUniversalMeasure;
|
|
27
|
+
export declare enum ST_VerticalAlignRun {
|
|
28
|
+
baseline = "baseline",
|
|
29
|
+
superscript = "superscript",
|
|
30
|
+
subscript = "subscript"
|
|
31
|
+
}
|
|
32
|
+
export type ST_Xstring = string;
|
|
33
|
+
export declare enum ST_XAlign {
|
|
34
|
+
left = "left",
|
|
35
|
+
center = "center",
|
|
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
|
+
}
|
|
52
|
+
export type ST_UniversalMeasure = string;
|
|
53
|
+
export type ST_PositiveUniversalMeasure = ST_UniversalMeasure;
|
|
54
|
+
export type ST_Percentage = string;
|
|
55
|
+
export type ST_FixedPercentage = ST_Percentage;
|
|
56
|
+
export type ST_PositivePercentage = ST_Percentage;
|
|
57
|
+
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
|
+
export type ST_LongHexNumber = string;
|
|
1459
|
+
export type ST_ShortHexNumber = string;
|
|
1460
|
+
export type ST_UcharHexNumber = string;
|
|
1461
|
+
export type ST_DecimalNumberOrPercent = ST_Percentage;
|
|
1462
|
+
export type ST_DecimalNumber = number;
|
|
1463
|
+
export type ST_SignedTwipsMeasure = number | ST_UniversalMeasure;
|
|
1464
|
+
export type ST_PixelsMeasure = ST_UnsignedDecimalNumber;
|
|
1465
|
+
export type ST_HpsMeasure = ST_UnsignedDecimalNumber | ST_PositiveUniversalMeasure;
|
|
1466
|
+
export type ST_SignedHpsMeasure = number | ST_UniversalMeasure;
|
|
1467
|
+
export type ST_DateTime = string;
|
|
1468
|
+
export type ST_MacroName = string;
|
|
1469
|
+
export type ST_EighthPointMeasure = ST_UnsignedDecimalNumber;
|
|
1470
|
+
export type ST_PointMeasure = ST_UnsignedDecimalNumber;
|
|
1471
|
+
export type ST_TextScale = ST_TextScalePercent;
|
|
1472
|
+
export type ST_TextScalePercent = string;
|
|
1473
|
+
export declare enum ST_HighlightColor {
|
|
1474
|
+
black = "black",
|
|
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
|
+
}
|
|
1495
|
+
export type ST_HexColor = ST_HexColorAuto | ST_HexColorRGB;
|
|
1496
|
+
export declare enum ST_Underline {
|
|
1497
|
+
single = "single",
|
|
1498
|
+
words = "words",
|
|
1499
|
+
double = "double",
|
|
1500
|
+
thick = "thick",
|
|
1501
|
+
dotted = "dotted",
|
|
1502
|
+
dottedHeavy = "dottedHeavy",
|
|
1503
|
+
dash = "dash",
|
|
1504
|
+
dashedHeavy = "dashedHeavy",
|
|
1505
|
+
dashLong = "dashLong",
|
|
1506
|
+
dashLongHeavy = "dashLongHeavy",
|
|
1507
|
+
dotDash = "dotDash",
|
|
1508
|
+
dashDotHeavy = "dashDotHeavy",
|
|
1509
|
+
dotDotDash = "dotDotDash",
|
|
1510
|
+
dashDotDotHeavy = "dashDotDotHeavy",
|
|
1511
|
+
wave = "wave",
|
|
1512
|
+
wavyHeavy = "wavyHeavy",
|
|
1513
|
+
wavyDouble = "wavyDouble",
|
|
1514
|
+
none = "none"
|
|
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
|
+
}
|
|
1859
|
+
export type ST_DocType = string;
|
|
1860
|
+
export declare enum ST_DocProtect {
|
|
1861
|
+
none = "none",
|
|
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
|
+
}
|
|
1875
|
+
export type ST_MailMergeDataType = string;
|
|
1876
|
+
export declare enum ST_MailMergeDest {
|
|
1877
|
+
newDocument = "newDocument",
|
|
1878
|
+
printer = "printer",
|
|
1879
|
+
email = "email",
|
|
1880
|
+
fax = "fax"
|
|
1881
|
+
}
|
|
1882
|
+
export declare enum ST_MailMergeOdsoFMDFieldType {
|
|
1883
|
+
null = "null",
|
|
1884
|
+
dbColumn = "dbColumn"
|
|
1885
|
+
}
|
|
1886
|
+
export declare enum ST_TextDirection {
|
|
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
|
+
}
|
|
1933
|
+
export type ST_FFHelpTextVal = string;
|
|
1934
|
+
export type ST_FFStatusTextVal = string;
|
|
1935
|
+
export type ST_FFName = string;
|
|
1936
|
+
export declare enum ST_FFTextType {
|
|
1937
|
+
regular = "regular",
|
|
1938
|
+
number = "number",
|
|
1939
|
+
date = "date",
|
|
1940
|
+
currentTime = "currentTime",
|
|
1941
|
+
currentDate = "currentDate",
|
|
1942
|
+
calculated = "calculated"
|
|
1943
|
+
}
|
|
1944
|
+
export declare enum ST_SectionMark {
|
|
1945
|
+
nextPage = "nextPage",
|
|
1946
|
+
nextColumn = "nextColumn",
|
|
1947
|
+
continuous = "continuous",
|
|
1948
|
+
evenPage = "evenPage",
|
|
1949
|
+
oddPage = "oddPage"
|
|
1950
|
+
}
|
|
1951
|
+
export declare enum ST_NumberFormat {
|
|
1952
|
+
decimal = "decimal",
|
|
1953
|
+
upperRoman = "upperRoman",
|
|
1954
|
+
lowerRoman = "lowerRoman",
|
|
1955
|
+
upperLetter = "upperLetter",
|
|
1956
|
+
lowerLetter = "lowerLetter",
|
|
1957
|
+
ordinal = "ordinal",
|
|
1958
|
+
cardinalText = "cardinalText",
|
|
1959
|
+
ordinalText = "ordinalText",
|
|
1960
|
+
hex = "hex",
|
|
1961
|
+
chicago = "chicago",
|
|
1962
|
+
ideographDigital = "ideographDigital",
|
|
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
|
+
}
|
|
2153
|
+
export type ST_MeasurementOrPercent = ST_DecimalNumberOrPercent | ST_UniversalMeasure;
|
|
2154
|
+
export declare enum ST_Merge {
|
|
2155
|
+
continue = "continue",
|
|
2156
|
+
restart = "restart"
|
|
2157
|
+
}
|
|
2158
|
+
export declare enum ST_TblLayoutType {
|
|
2159
|
+
fixed = "fixed",
|
|
2160
|
+
autofit = "autofit"
|
|
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
|
+
}
|
|
2192
|
+
export type ST_TargetScreenSz = string;
|
|
2193
|
+
export declare enum ST_CharacterSpacing {
|
|
2194
|
+
doNotCompress = "doNotCompress",
|
|
2195
|
+
compressPunctuation = "compressPunctuation",
|
|
2196
|
+
compressPunctuationAndJapaneseKana = "compressPunctuationAndJapaneseKana"
|
|
2197
|
+
}
|
|
2198
|
+
export declare enum ST_WmlColorSchemeIndex {
|
|
2199
|
+
dark1 = "dark1",
|
|
2200
|
+
light1 = "light1",
|
|
2201
|
+
dark2 = "dark2",
|
|
2202
|
+
light2 = "light2",
|
|
2203
|
+
accent1 = "accent1",
|
|
2204
|
+
accent2 = "accent2",
|
|
2205
|
+
accent3 = "accent3",
|
|
2206
|
+
accent4 = "accent4",
|
|
2207
|
+
accent5 = "accent5",
|
|
2208
|
+
accent6 = "accent6",
|
|
2209
|
+
hyperlink = "hyperlink",
|
|
2210
|
+
followedHyperlink = "followedHyperlink"
|
|
2211
|
+
}
|
|
2212
|
+
export declare enum ST_StyleSort {
|
|
2213
|
+
name = "name",
|
|
2214
|
+
priority = "priority",
|
|
2215
|
+
default = "default",
|
|
2216
|
+
font = "font",
|
|
2217
|
+
basedOn = "basedOn",
|
|
2218
|
+
type = "type"
|
|
2219
|
+
}
|
|
2220
|
+
export declare enum ST_FrameScrollbar {
|
|
2221
|
+
on = "on",
|
|
2222
|
+
off = "off",
|
|
2223
|
+
auto = "auto"
|
|
2224
|
+
}
|
|
2225
|
+
export declare enum ST_FrameLayout {
|
|
2226
|
+
rows = "rows",
|
|
2227
|
+
cols = "cols",
|
|
2228
|
+
none = "none"
|
|
2229
|
+
}
|
|
2230
|
+
export declare enum ST_LevelSuffix {
|
|
2231
|
+
tab = "tab",
|
|
2232
|
+
space = "space",
|
|
2233
|
+
nothing = "nothing"
|
|
2234
|
+
}
|
|
2235
|
+
export declare enum ST_MultiLevelType {
|
|
2236
|
+
singleLevel = "singleLevel",
|
|
2237
|
+
multilevel = "multilevel",
|
|
2238
|
+
hybridMultilevel = "hybridMultilevel"
|
|
2239
|
+
}
|
|
2240
|
+
export declare enum ST_TblStyleOverrideType {
|
|
2241
|
+
wholeTable = "wholeTable",
|
|
2242
|
+
firstRow = "firstRow",
|
|
2243
|
+
lastRow = "lastRow",
|
|
2244
|
+
firstCol = "firstCol",
|
|
2245
|
+
lastCol = "lastCol",
|
|
2246
|
+
band1Vert = "band1Vert",
|
|
2247
|
+
band2Vert = "band2Vert",
|
|
2248
|
+
band1Horz = "band1Horz",
|
|
2249
|
+
band2Horz = "band2Horz",
|
|
2250
|
+
neCell = "neCell",
|
|
2251
|
+
nwCell = "nwCell",
|
|
2252
|
+
seCell = "seCell",
|
|
2253
|
+
swCell = "swCell"
|
|
2254
|
+
}
|
|
2255
|
+
export declare enum ST_StyleType {
|
|
2256
|
+
paragraph = "paragraph",
|
|
2257
|
+
character = "character",
|
|
2258
|
+
table = "table",
|
|
2259
|
+
numbering = "numbering"
|
|
2260
|
+
}
|
|
2261
|
+
export declare enum ST_FontFamily {
|
|
2262
|
+
decorative = "decorative",
|
|
2263
|
+
modern = "modern",
|
|
2264
|
+
roman = "roman",
|
|
2265
|
+
script = "script",
|
|
2266
|
+
swiss = "swiss",
|
|
2267
|
+
auto = "auto"
|
|
2268
|
+
}
|
|
2269
|
+
export declare enum ST_Pitch {
|
|
2270
|
+
fixed = "fixed",
|
|
2271
|
+
variable = "variable",
|
|
2272
|
+
default = "default"
|
|
2273
|
+
}
|
|
2274
|
+
export declare enum ST_ThemeColor {
|
|
2275
|
+
dark1 = "dark1",
|
|
2276
|
+
light1 = "light1",
|
|
2277
|
+
dark2 = "dark2",
|
|
2278
|
+
light2 = "light2",
|
|
2279
|
+
accent1 = "accent1",
|
|
2280
|
+
accent2 = "accent2",
|
|
2281
|
+
accent3 = "accent3",
|
|
2282
|
+
accent4 = "accent4",
|
|
2283
|
+
accent5 = "accent5",
|
|
2284
|
+
accent6 = "accent6",
|
|
2285
|
+
hyperlink = "hyperlink",
|
|
2286
|
+
followedHyperlink = "followedHyperlink",
|
|
2287
|
+
none = "none",
|
|
2288
|
+
background1 = "background1",
|
|
2289
|
+
text1 = "text1",
|
|
2290
|
+
background2 = "background2",
|
|
2291
|
+
text2 = "text2"
|
|
2292
|
+
}
|
|
2293
|
+
export declare enum ST_DocPartBehavior {
|
|
2294
|
+
content = "content",
|
|
2295
|
+
p = "p",
|
|
2296
|
+
pg = "pg"
|
|
2297
|
+
}
|
|
2298
|
+
export declare enum ST_DocPartType {
|
|
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
|
+
};
|