uudev 1.0.0 → 1.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/apptemplate/office/package-lock.json +65 -42
- package/apptemplate/office/package.json +2 -2
- package/apptemplate/office/src_excel/App.vue +13 -0
- package/apptemplate/office/src_excel/demo/demo.vue +51 -0
- package/apptemplate/office/{src → src_excel}/main.ts +4 -0
- package/apptemplate/office/{src → src_excel}/router/index.ts +4 -4
- package/apptemplate/office/src_ppt/App.vue +13 -0
- package/apptemplate/office/src_ppt/demo/demo.vue +63 -0
- package/apptemplate/office/src_ppt/main.ts +13 -0
- package/apptemplate/office/src_ppt/router/index.ts +19 -0
- package/apptemplate/office/src_word/App.vue +13 -0
- package/apptemplate/office/src_word/demo/demo.vue +51 -0
- package/apptemplate/office/src_word/main.ts +13 -0
- package/apptemplate/office/src_word/router/index.ts +19 -0
- package/apptemplate/office/tsconfig.app.json +2 -0
- package/dtstype/base.d.ts +5 -0
- package/dtstype/enum/excel_enum.d.ts +4727 -0
- package/dtstype/enum/mso_enum.d.ts +6452 -0
- package/dtstype/enum/ppt_enum.d.ts +2656 -0
- package/dtstype/enum/word_enum.d.ts +7862 -0
- package/dtstype/excel.d.ts +8358 -0
- package/dtstype/mso.d.ts +3107 -0
- package/dtstype/ppt.d.ts +3224 -0
- package/dtstype/word.d.ts +6786 -0
- package/main.js +4 -3
- package/package.json +14 -2
- package/apptemplate/office/src/App.vue +0 -11
|
@@ -0,0 +1,2656 @@
|
|
|
1
|
+
declare enum PpWindowState {
|
|
2
|
+
ppWindowNormal = 1,
|
|
3
|
+
ppWindowMinimized = 2,
|
|
4
|
+
ppWindowMaximized = 3
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
declare enum PpArrangeStyle {
|
|
8
|
+
ppArrangeTiled = 1,
|
|
9
|
+
ppArrangeCascade = 2
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
declare enum PpViewType {
|
|
13
|
+
ppViewSlide = 1,
|
|
14
|
+
ppViewSlideMaster = 2,
|
|
15
|
+
ppViewNotesPage = 3,
|
|
16
|
+
ppViewHandoutMaster = 4,
|
|
17
|
+
ppViewNotesMaster = 5,
|
|
18
|
+
ppViewOutline = 6,
|
|
19
|
+
ppViewSlideSorter = 7,
|
|
20
|
+
ppViewTitleMaster = 8,
|
|
21
|
+
ppViewNormal = 9,
|
|
22
|
+
ppViewPrintPreview = 10,
|
|
23
|
+
ppViewThumbnails = 11,
|
|
24
|
+
ppViewMasterThumbnails = 12
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
declare enum PpColorSchemeIndex {
|
|
28
|
+
ppSchemeColorMixed = -2,
|
|
29
|
+
ppNotSchemeColor = 0,
|
|
30
|
+
ppBackground = 1,
|
|
31
|
+
ppForeground = 2,
|
|
32
|
+
ppShadow = 3,
|
|
33
|
+
ppTitle = 4,
|
|
34
|
+
ppFill = 5,
|
|
35
|
+
ppAccent1 = 6,
|
|
36
|
+
ppAccent2 = 7,
|
|
37
|
+
ppAccent3 = 8
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
declare enum PpSlideSizeType {
|
|
41
|
+
ppSlideSizeOnScreen = 1,
|
|
42
|
+
ppSlideSizeLetterPaper = 2,
|
|
43
|
+
ppSlideSizeA4Paper = 3,
|
|
44
|
+
ppSlideSize35MM = 4,
|
|
45
|
+
ppSlideSizeOverhead = 5,
|
|
46
|
+
ppSlideSizeBanner = 6,
|
|
47
|
+
ppSlideSizeCustom = 7,
|
|
48
|
+
ppSlideSizeLedgerPaper = 8,
|
|
49
|
+
ppSlideSizeA3Paper = 9,
|
|
50
|
+
ppSlideSizeB4ISOPaper = 10,
|
|
51
|
+
ppSlideSizeB5ISOPaper = 11,
|
|
52
|
+
ppSlideSizeB4JISPaper = 12,
|
|
53
|
+
ppSlideSizeB5JISPaper = 13,
|
|
54
|
+
ppSlideSizeHagakiCard = 14,
|
|
55
|
+
ppSlideSizeOnScreen16x9 = 15,
|
|
56
|
+
ppSlideSizeOnScreen16x10 = 16
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
declare enum PpSaveAsFileType {
|
|
60
|
+
ppSaveAsPresentation = 1,
|
|
61
|
+
ppSaveAsPowerPoint7 = 2,
|
|
62
|
+
ppSaveAsPowerPoint4 = 3,
|
|
63
|
+
ppSaveAsPowerPoint3 = 4,
|
|
64
|
+
ppSaveAsTemplate = 5,
|
|
65
|
+
ppSaveAsRTF = 6,
|
|
66
|
+
ppSaveAsShow = 7,
|
|
67
|
+
ppSaveAsAddIn = 8,
|
|
68
|
+
ppSaveAsPowerPoint4FarEast = 10,
|
|
69
|
+
ppSaveAsDefault = 11,
|
|
70
|
+
ppSaveAsHTML = 12,
|
|
71
|
+
ppSaveAsHTMLv3 = 13,
|
|
72
|
+
ppSaveAsHTMLDual = 14,
|
|
73
|
+
ppSaveAsMetaFile = 15,
|
|
74
|
+
ppSaveAsGIF = 16,
|
|
75
|
+
ppSaveAsJPG = 17,
|
|
76
|
+
ppSaveAsPNG = 18,
|
|
77
|
+
ppSaveAsBMP = 19,
|
|
78
|
+
ppSaveAsWebArchive = 20,
|
|
79
|
+
ppSaveAsTIF = 21,
|
|
80
|
+
ppSaveAsPresForReview = 22,
|
|
81
|
+
ppSaveAsEMF = 23,
|
|
82
|
+
ppSaveAsOpenXMLPresentation = 24,
|
|
83
|
+
ppSaveAsOpenXMLPresentationMacroEnabled = 25,
|
|
84
|
+
ppSaveAsOpenXMLTemplate = 26,
|
|
85
|
+
ppSaveAsOpenXMLTemplateMacroEnabled = 27,
|
|
86
|
+
ppSaveAsOpenXMLShow = 28,
|
|
87
|
+
ppSaveAsOpenXMLShowMacroEnabled = 29,
|
|
88
|
+
ppSaveAsOpenXMLAddin = 30,
|
|
89
|
+
ppSaveAsOpenXMLTheme = 31,
|
|
90
|
+
ppSaveAsPDF = 32,
|
|
91
|
+
ppSaveAsXPS = 33,
|
|
92
|
+
ppSaveAsXMLPresentation = 34,
|
|
93
|
+
ppSaveAsOpenDocumentPresentation = 35,
|
|
94
|
+
ppSaveAsOpenXMLPicturePresentation = 36,
|
|
95
|
+
ppSaveAsWMV = 37,
|
|
96
|
+
ppSaveAsStrictOpenXMLPresentation = 38,
|
|
97
|
+
ppSaveAsMP4 = 39,
|
|
98
|
+
ppSaveAsAnimatedGIF = 40,
|
|
99
|
+
ppSaveAsExternalConverter = 64000
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
declare enum PpTextStyleType {
|
|
103
|
+
ppDefaultStyle = 1,
|
|
104
|
+
ppTitleStyle = 2,
|
|
105
|
+
ppBodyStyle = 3
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
declare enum PpSlideLayout {
|
|
109
|
+
ppLayoutMixed = -2,
|
|
110
|
+
ppLayoutTitle = 1,
|
|
111
|
+
ppLayoutText = 2,
|
|
112
|
+
ppLayoutTwoColumnText = 3,
|
|
113
|
+
ppLayoutTable = 4,
|
|
114
|
+
ppLayoutTextAndChart = 5,
|
|
115
|
+
ppLayoutChartAndText = 6,
|
|
116
|
+
ppLayoutOrgchart = 7,
|
|
117
|
+
ppLayoutChart = 8,
|
|
118
|
+
ppLayoutTextAndClipart = 9,
|
|
119
|
+
ppLayoutClipartAndText = 10,
|
|
120
|
+
ppLayoutTitleOnly = 11,
|
|
121
|
+
ppLayoutBlank = 12,
|
|
122
|
+
ppLayoutTextAndObject = 13,
|
|
123
|
+
ppLayoutObjectAndText = 14,
|
|
124
|
+
ppLayoutLargeObject = 15,
|
|
125
|
+
ppLayoutObject = 16,
|
|
126
|
+
ppLayoutTextAndMediaClip = 17,
|
|
127
|
+
ppLayoutMediaClipAndText = 18,
|
|
128
|
+
ppLayoutObjectOverText = 19,
|
|
129
|
+
ppLayoutTextOverObject = 20,
|
|
130
|
+
ppLayoutTextAndTwoObjects = 21,
|
|
131
|
+
ppLayoutTwoObjectsAndText = 22,
|
|
132
|
+
ppLayoutTwoObjectsOverText = 23,
|
|
133
|
+
ppLayoutFourObjects = 24,
|
|
134
|
+
ppLayoutVerticalText = 25,
|
|
135
|
+
ppLayoutClipArtAndVerticalText = 26,
|
|
136
|
+
ppLayoutVerticalTitleAndText = 27,
|
|
137
|
+
ppLayoutVerticalTitleAndTextOverChart = 28,
|
|
138
|
+
ppLayoutTwoObjects = 29,
|
|
139
|
+
ppLayoutObjectAndTwoObjects = 30,
|
|
140
|
+
ppLayoutTwoObjectsAndObject = 31,
|
|
141
|
+
ppLayoutCustom = 32,
|
|
142
|
+
ppLayoutSectionHeader = 33,
|
|
143
|
+
ppLayoutComparison = 34,
|
|
144
|
+
ppLayoutContentWithCaption = 35,
|
|
145
|
+
ppLayoutPictureWithCaption = 36
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
declare enum PpEntryEffect {
|
|
149
|
+
ppEffectMixed = -2,
|
|
150
|
+
ppEffectNone = 0,
|
|
151
|
+
ppEffectCut = 257,
|
|
152
|
+
ppEffectCutThroughBlack = 258,
|
|
153
|
+
ppEffectRandom = 513,
|
|
154
|
+
ppEffectBlindsHorizontal = 769,
|
|
155
|
+
ppEffectBlindsVertical = 770,
|
|
156
|
+
ppEffectCheckerboardAcross = 1025,
|
|
157
|
+
ppEffectCheckerboardDown = 1026,
|
|
158
|
+
ppEffectCoverLeft = 1281,
|
|
159
|
+
ppEffectCoverUp = 1282,
|
|
160
|
+
ppEffectCoverRight = 1283,
|
|
161
|
+
ppEffectCoverDown = 1284,
|
|
162
|
+
ppEffectCoverLeftUp = 1285,
|
|
163
|
+
ppEffectCoverRightUp = 1286,
|
|
164
|
+
ppEffectCoverLeftDown = 1287,
|
|
165
|
+
ppEffectCoverRightDown = 1288,
|
|
166
|
+
ppEffectDissolve = 1537,
|
|
167
|
+
ppEffectFade = 1793,
|
|
168
|
+
ppEffectUncoverLeft = 2049,
|
|
169
|
+
ppEffectUncoverUp = 2050,
|
|
170
|
+
ppEffectUncoverRight = 2051,
|
|
171
|
+
ppEffectUncoverDown = 2052,
|
|
172
|
+
ppEffectUncoverLeftUp = 2053,
|
|
173
|
+
ppEffectUncoverRightUp = 2054,
|
|
174
|
+
ppEffectUncoverLeftDown = 2055,
|
|
175
|
+
ppEffectUncoverRightDown = 2056,
|
|
176
|
+
ppEffectRandomBarsHorizontal = 2305,
|
|
177
|
+
ppEffectRandomBarsVertical = 2306,
|
|
178
|
+
ppEffectStripsUpLeft = 2561,
|
|
179
|
+
ppEffectStripsUpRight = 2562,
|
|
180
|
+
ppEffectStripsDownLeft = 2563,
|
|
181
|
+
ppEffectStripsDownRight = 2564,
|
|
182
|
+
ppEffectStripsLeftUp = 2565,
|
|
183
|
+
ppEffectStripsRightUp = 2566,
|
|
184
|
+
ppEffectStripsLeftDown = 2567,
|
|
185
|
+
ppEffectStripsRightDown = 2568,
|
|
186
|
+
ppEffectWipeLeft = 2817,
|
|
187
|
+
ppEffectWipeUp = 2818,
|
|
188
|
+
ppEffectWipeRight = 2819,
|
|
189
|
+
ppEffectWipeDown = 2820,
|
|
190
|
+
ppEffectBoxOut = 3073,
|
|
191
|
+
ppEffectBoxIn = 3074,
|
|
192
|
+
ppEffectFlyFromLeft = 3329,
|
|
193
|
+
ppEffectFlyFromTop = 3330,
|
|
194
|
+
ppEffectFlyFromRight = 3331,
|
|
195
|
+
ppEffectFlyFromBottom = 3332,
|
|
196
|
+
ppEffectFlyFromTopLeft = 3333,
|
|
197
|
+
ppEffectFlyFromTopRight = 3334,
|
|
198
|
+
ppEffectFlyFromBottomLeft = 3335,
|
|
199
|
+
ppEffectFlyFromBottomRight = 3336,
|
|
200
|
+
ppEffectPeekFromLeft = 3337,
|
|
201
|
+
ppEffectPeekFromDown = 3338,
|
|
202
|
+
ppEffectPeekFromRight = 3339,
|
|
203
|
+
ppEffectPeekFromUp = 3340,
|
|
204
|
+
ppEffectCrawlFromLeft = 3341,
|
|
205
|
+
ppEffectCrawlFromUp = 3342,
|
|
206
|
+
ppEffectCrawlFromRight = 3343,
|
|
207
|
+
ppEffectCrawlFromDown = 3344,
|
|
208
|
+
ppEffectZoomIn = 3345,
|
|
209
|
+
ppEffectZoomInSlightly = 3346,
|
|
210
|
+
ppEffectZoomOut = 3347,
|
|
211
|
+
ppEffectZoomOutSlightly = 3348,
|
|
212
|
+
ppEffectZoomCenter = 3349,
|
|
213
|
+
ppEffectZoomBottom = 3350,
|
|
214
|
+
ppEffectStretchAcross = 3351,
|
|
215
|
+
ppEffectStretchLeft = 3352,
|
|
216
|
+
ppEffectStretchUp = 3353,
|
|
217
|
+
ppEffectStretchRight = 3354,
|
|
218
|
+
ppEffectStretchDown = 3355,
|
|
219
|
+
ppEffectSwivel = 3356,
|
|
220
|
+
ppEffectSpiral = 3357,
|
|
221
|
+
ppEffectSplitHorizontalOut = 3585,
|
|
222
|
+
ppEffectSplitHorizontalIn = 3586,
|
|
223
|
+
ppEffectSplitVerticalOut = 3587,
|
|
224
|
+
ppEffectSplitVerticalIn = 3588,
|
|
225
|
+
ppEffectFlashOnceFast = 3841,
|
|
226
|
+
ppEffectFlashOnceMedium = 3842,
|
|
227
|
+
ppEffectFlashOnceSlow = 3843,
|
|
228
|
+
ppEffectAppear = 3844,
|
|
229
|
+
ppEffectCircleOut = 3845,
|
|
230
|
+
ppEffectDiamondOut = 3846,
|
|
231
|
+
ppEffectCombHorizontal = 3847,
|
|
232
|
+
ppEffectCombVertical = 3848,
|
|
233
|
+
ppEffectFadeSmoothly = 3849,
|
|
234
|
+
ppEffectNewsflash = 3850,
|
|
235
|
+
ppEffectPlusOut = 3851,
|
|
236
|
+
ppEffectPushDown = 3852,
|
|
237
|
+
ppEffectPushLeft = 3853,
|
|
238
|
+
ppEffectPushRight = 3854,
|
|
239
|
+
ppEffectPushUp = 3855,
|
|
240
|
+
ppEffectWedge = 3856,
|
|
241
|
+
ppEffectWheel1Spoke = 3857,
|
|
242
|
+
ppEffectWheel2Spokes = 3858,
|
|
243
|
+
ppEffectWheel3Spokes = 3859,
|
|
244
|
+
ppEffectWheel4Spokes = 3860,
|
|
245
|
+
ppEffectWheel8Spokes = 3861,
|
|
246
|
+
ppEffectWheelReverse1Spoke = 3862,
|
|
247
|
+
ppEffectVortexLeft = 3863,
|
|
248
|
+
ppEffectVortexUp = 3864,
|
|
249
|
+
ppEffectVortexRight = 3865,
|
|
250
|
+
ppEffectVortexDown = 3866,
|
|
251
|
+
ppEffectRippleCenter = 3867,
|
|
252
|
+
ppEffectRippleRightUp = 3868,
|
|
253
|
+
ppEffectRippleLeftUp = 3869,
|
|
254
|
+
ppEffectRippleLeftDown = 3870,
|
|
255
|
+
ppEffectRippleRightDown = 3871,
|
|
256
|
+
ppEffectGlitterDiamondLeft = 3872,
|
|
257
|
+
ppEffectGlitterDiamondUp = 3873,
|
|
258
|
+
ppEffectGlitterDiamondRight = 3874,
|
|
259
|
+
ppEffectGlitterDiamondDown = 3875,
|
|
260
|
+
ppEffectGlitterHexagonLeft = 3876,
|
|
261
|
+
ppEffectGlitterHexagonUp = 3877,
|
|
262
|
+
ppEffectGlitterHexagonRight = 3878,
|
|
263
|
+
ppEffectGlitterHexagonDown = 3879,
|
|
264
|
+
ppEffectGalleryLeft = 3880,
|
|
265
|
+
ppEffectGalleryRight = 3881,
|
|
266
|
+
ppEffectConveyorLeft = 3882,
|
|
267
|
+
ppEffectConveyorRight = 3883,
|
|
268
|
+
ppEffectDoorsVertical = 3884,
|
|
269
|
+
ppEffectDoorsHorizontal = 3885,
|
|
270
|
+
ppEffectWindowVertical = 3886,
|
|
271
|
+
ppEffectWindowHorizontal = 3887,
|
|
272
|
+
ppEffectWarpIn = 3888,
|
|
273
|
+
ppEffectWarpOut = 3889,
|
|
274
|
+
ppEffectFlyThroughIn = 3890,
|
|
275
|
+
ppEffectFlyThroughOut = 3891,
|
|
276
|
+
ppEffectFlyThroughInBounce = 3892,
|
|
277
|
+
ppEffectFlyThroughOutBounce = 3893,
|
|
278
|
+
ppEffectRevealSmoothLeft = 3894,
|
|
279
|
+
ppEffectRevealSmoothRight = 3895,
|
|
280
|
+
ppEffectRevealBlackLeft = 3896,
|
|
281
|
+
ppEffectRevealBlackRight = 3897,
|
|
282
|
+
ppEffectHoneycomb = 3898,
|
|
283
|
+
ppEffectFerrisWheelLeft = 3899,
|
|
284
|
+
ppEffectFerrisWheelRight = 3900,
|
|
285
|
+
ppEffectSwitchLeft = 3901,
|
|
286
|
+
ppEffectSwitchUp = 3902,
|
|
287
|
+
ppEffectSwitchRight = 3903,
|
|
288
|
+
ppEffectSwitchDown = 3904,
|
|
289
|
+
ppEffectFlipLeft = 3905,
|
|
290
|
+
ppEffectFlipUp = 3906,
|
|
291
|
+
ppEffectFlipRight = 3907,
|
|
292
|
+
ppEffectFlipDown = 3908,
|
|
293
|
+
ppEffectFlashbulb = 3909,
|
|
294
|
+
ppEffectShredStripsIn = 3910,
|
|
295
|
+
ppEffectShredStripsOut = 3911,
|
|
296
|
+
ppEffectShredRectangleIn = 3912,
|
|
297
|
+
ppEffectShredRectangleOut = 3913,
|
|
298
|
+
ppEffectCubeLeft = 3914,
|
|
299
|
+
ppEffectCubeUp = 3915,
|
|
300
|
+
ppEffectCubeRight = 3916,
|
|
301
|
+
ppEffectCubeDown = 3917,
|
|
302
|
+
ppEffectRotateLeft = 3918,
|
|
303
|
+
ppEffectRotateUp = 3919,
|
|
304
|
+
ppEffectRotateRight = 3920,
|
|
305
|
+
ppEffectRotateDown = 3921,
|
|
306
|
+
ppEffectBoxLeft = 3922,
|
|
307
|
+
ppEffectBoxUp = 3923,
|
|
308
|
+
ppEffectBoxRight = 3924,
|
|
309
|
+
ppEffectBoxDown = 3925,
|
|
310
|
+
ppEffectOrbitLeft = 3926,
|
|
311
|
+
ppEffectOrbitUp = 3927,
|
|
312
|
+
ppEffectOrbitRight = 3928,
|
|
313
|
+
ppEffectOrbitDown = 3929,
|
|
314
|
+
ppEffectPanLeft = 3930,
|
|
315
|
+
ppEffectPanUp = 3931,
|
|
316
|
+
ppEffectPanRight = 3932,
|
|
317
|
+
ppEffectPanDown = 3933,
|
|
318
|
+
ppEffectFallOverLeft = 3934,
|
|
319
|
+
ppEffectFallOverRight = 3935,
|
|
320
|
+
ppEffectDrapeLeft = 3936,
|
|
321
|
+
ppEffectDrapeRight = 3937,
|
|
322
|
+
ppEffectCurtains = 3938,
|
|
323
|
+
ppEffectWindLeft = 3939,
|
|
324
|
+
ppEffectWindRight = 3940,
|
|
325
|
+
ppEffectPrestige = 3941,
|
|
326
|
+
ppEffectFracture = 3942,
|
|
327
|
+
ppEffectCrush = 3943,
|
|
328
|
+
ppEffectPeelOffLeft = 3944,
|
|
329
|
+
ppEffectPeelOffRight = 3945,
|
|
330
|
+
ppEffectPageCurlSingleLeft = 3946,
|
|
331
|
+
ppEffectPageCurlSingleRight = 3947,
|
|
332
|
+
ppEffectPageCurlDoubleLeft = 3948,
|
|
333
|
+
ppEffectPageCurlDoubleRight = 3949,
|
|
334
|
+
ppEffectAirplaneLeft = 3950,
|
|
335
|
+
ppEffectAirplaneRight = 3951,
|
|
336
|
+
ppEffectOrigamiLeft = 3952,
|
|
337
|
+
ppEffectOrigamiRight = 3953,
|
|
338
|
+
ppEffectMorphByObject = 3954,
|
|
339
|
+
ppEffectMorphByWord = 3955,
|
|
340
|
+
ppEffectMorphByChar = 3956
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
declare enum PpTextLevelEffect {
|
|
344
|
+
ppAnimateLevelMixed = -2,
|
|
345
|
+
ppAnimateLevelNone = 0,
|
|
346
|
+
ppAnimateByFirstLevel = 1,
|
|
347
|
+
ppAnimateBySecondLevel = 2,
|
|
348
|
+
ppAnimateByThirdLevel = 3,
|
|
349
|
+
ppAnimateByFourthLevel = 4,
|
|
350
|
+
ppAnimateByFifthLevel = 5,
|
|
351
|
+
ppAnimateByAllLevels = 16
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
declare enum PpTextUnitEffect {
|
|
355
|
+
ppAnimateUnitMixed = -2,
|
|
356
|
+
ppAnimateByParagraph = 0,
|
|
357
|
+
ppAnimateByWord = 1,
|
|
358
|
+
ppAnimateByCharacter = 2
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
declare enum PpChartUnitEffect {
|
|
362
|
+
ppAnimateChartMixed = -2,
|
|
363
|
+
ppAnimateBySeries = 1,
|
|
364
|
+
ppAnimateByCategory = 2,
|
|
365
|
+
ppAnimateBySeriesElements = 3,
|
|
366
|
+
ppAnimateByCategoryElements = 4,
|
|
367
|
+
ppAnimateChartAllAtOnce = 5
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
declare enum PpAfterEffect {
|
|
371
|
+
ppAfterEffectMixed = -2,
|
|
372
|
+
ppAfterEffectNothing = 0,
|
|
373
|
+
ppAfterEffectHide = 1,
|
|
374
|
+
ppAfterEffectDim = 2,
|
|
375
|
+
ppAfterEffectHideOnClick = 3
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
declare enum PpAdvanceMode {
|
|
379
|
+
ppAdvanceModeMixed = -2,
|
|
380
|
+
ppAdvanceOnClick = 1,
|
|
381
|
+
ppAdvanceOnTime = 2
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
declare enum PpSoundEffectType {
|
|
385
|
+
ppSoundEffectsMixed = -2,
|
|
386
|
+
ppSoundNone = 0,
|
|
387
|
+
ppSoundStopPrevious = 1,
|
|
388
|
+
ppSoundFile = 2
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
declare enum PpFollowColors {
|
|
392
|
+
ppFollowColorsMixed = -2,
|
|
393
|
+
ppFollowColorsNone = 0,
|
|
394
|
+
ppFollowColorsScheme = 1,
|
|
395
|
+
ppFollowColorsTextAndBackground = 2
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
declare enum PpUpdateOption {
|
|
399
|
+
ppUpdateOptionMixed = -2,
|
|
400
|
+
ppUpdateOptionManual = 1,
|
|
401
|
+
ppUpdateOptionAutomatic = 2
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
declare enum PpParagraphAlignment {
|
|
405
|
+
ppAlignmentMixed = -2,
|
|
406
|
+
ppAlignLeft = 1,
|
|
407
|
+
ppAlignCenter = 2,
|
|
408
|
+
ppAlignRight = 3,
|
|
409
|
+
ppAlignJustify = 4,
|
|
410
|
+
ppAlignDistribute = 5,
|
|
411
|
+
ppAlignThaiDistribute = 6,
|
|
412
|
+
ppAlignJustifyLow = 7
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
declare enum PpBaselineAlignment {
|
|
416
|
+
ppBaselineAlignMixed = -2,
|
|
417
|
+
ppBaselineAlignBaseline = 1,
|
|
418
|
+
ppBaselineAlignTop = 2,
|
|
419
|
+
ppBaselineAlignCenter = 3,
|
|
420
|
+
ppBaselineAlignFarEast50 = 4,
|
|
421
|
+
ppBaselineAlignAuto = 5
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
declare enum PpTabStopType {
|
|
425
|
+
ppTabStopMixed = -2,
|
|
426
|
+
ppTabStopLeft = 1,
|
|
427
|
+
ppTabStopCenter = 2,
|
|
428
|
+
ppTabStopRight = 3,
|
|
429
|
+
ppTabStopDecimal = 4
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
declare enum PpIndentControl {
|
|
433
|
+
ppIndentControlMixed = -2,
|
|
434
|
+
ppIndentReplaceAttr = 1,
|
|
435
|
+
ppIndentKeepAttr = 2
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
declare enum PpChangeCase {
|
|
439
|
+
ppCaseSentence = 1,
|
|
440
|
+
ppCaseLower = 2,
|
|
441
|
+
ppCaseUpper = 3,
|
|
442
|
+
ppCaseTitle = 4,
|
|
443
|
+
ppCaseToggle = 5
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
declare enum PpSlideShowPointerType {
|
|
447
|
+
ppSlideShowPointerNone = 0,
|
|
448
|
+
ppSlideShowPointerArrow = 1,
|
|
449
|
+
ppSlideShowPointerPen = 2,
|
|
450
|
+
ppSlideShowPointerAlwaysHidden = 3,
|
|
451
|
+
ppSlideShowPointerAutoArrow = 4,
|
|
452
|
+
ppSlideShowPointerEraser = 5
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
declare enum PpSlideShowState {
|
|
456
|
+
ppSlideShowRunning = 1,
|
|
457
|
+
ppSlideShowPaused = 2,
|
|
458
|
+
ppSlideShowBlackScreen = 3,
|
|
459
|
+
ppSlideShowWhiteScreen = 4,
|
|
460
|
+
ppSlideShowDone = 5
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
declare enum PpSlideShowAdvanceMode {
|
|
464
|
+
ppSlideShowManualAdvance = 1,
|
|
465
|
+
ppSlideShowUseSlideTimings = 2,
|
|
466
|
+
ppSlideShowRehearseNewTimings = 3
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
declare enum PpFileDialogType {
|
|
470
|
+
ppFileDialogOpen = 1,
|
|
471
|
+
ppFileDialogSave = 2
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
declare enum PpPrintOutputType {
|
|
475
|
+
ppPrintOutputSlides = 1,
|
|
476
|
+
ppPrintOutputTwoSlideHandouts = 2,
|
|
477
|
+
ppPrintOutputThreeSlideHandouts = 3,
|
|
478
|
+
ppPrintOutputSixSlideHandouts = 4,
|
|
479
|
+
ppPrintOutputNotesPages = 5,
|
|
480
|
+
ppPrintOutputOutline = 6,
|
|
481
|
+
ppPrintOutputBuildSlides = 7,
|
|
482
|
+
ppPrintOutputFourSlideHandouts = 8,
|
|
483
|
+
ppPrintOutputNineSlideHandouts = 9,
|
|
484
|
+
ppPrintOutputOneSlideHandouts = 10
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
declare enum PpPrintHandoutOrder {
|
|
488
|
+
ppPrintHandoutVerticalFirst = 1,
|
|
489
|
+
ppPrintHandoutHorizontalFirst = 2
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
declare enum PpPrintColorType {
|
|
493
|
+
ppPrintColor = 1,
|
|
494
|
+
ppPrintBlackAndWhite = 2,
|
|
495
|
+
ppPrintPureBlackAndWhite = 3
|
|
496
|
+
}
|
|
497
|
+
|
|
498
|
+
declare enum PpSelectionType {
|
|
499
|
+
ppSelectionNone = 0,
|
|
500
|
+
ppSelectionSlides = 1,
|
|
501
|
+
ppSelectionShapes = 2,
|
|
502
|
+
ppSelectionText = 3
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
declare enum PpDirection {
|
|
506
|
+
ppDirectionMixed = -2,
|
|
507
|
+
ppDirectionLeftToRight = 1,
|
|
508
|
+
ppDirectionRightToLeft = 2
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
declare enum PpDateTimeFormat {
|
|
512
|
+
ppDateTimeFormatMixed = -2,
|
|
513
|
+
ppDateTimeMdyy = 1,
|
|
514
|
+
ppDateTimeddddMMMMddyyyy = 2,
|
|
515
|
+
ppDateTimedMMMMyyyy = 3,
|
|
516
|
+
ppDateTimeMMMMdyyyy = 4,
|
|
517
|
+
ppDateTimedMMMyy = 5,
|
|
518
|
+
ppDateTimeMMMMyy = 6,
|
|
519
|
+
ppDateTimeMMyy = 7,
|
|
520
|
+
ppDateTimeMMddyyHmm = 8,
|
|
521
|
+
ppDateTimeMMddyyhmmAMPM = 9,
|
|
522
|
+
ppDateTimeHmm = 10,
|
|
523
|
+
ppDateTimeHmmss = 11,
|
|
524
|
+
ppDateTimehmmAMPM = 12,
|
|
525
|
+
ppDateTimehmmssAMPM = 13,
|
|
526
|
+
ppDateTimeFigureOut = 14,
|
|
527
|
+
ppDateTimeUAQ1 = 15,
|
|
528
|
+
ppDateTimeUAQ2 = 16,
|
|
529
|
+
ppDateTimeUAQ3 = 17,
|
|
530
|
+
ppDateTimeUAQ4 = 18,
|
|
531
|
+
ppDateTimeUAQ5 = 19,
|
|
532
|
+
ppDateTimeUAQ6 = 20,
|
|
533
|
+
ppDateTimeUAQ7 = 21,
|
|
534
|
+
ppDateTimeFullYear = 22
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
declare enum PpTransitionSpeed {
|
|
538
|
+
ppTransitionSpeedMixed = -2,
|
|
539
|
+
ppTransitionSpeedSlow = 1,
|
|
540
|
+
ppTransitionSpeedMedium = 2,
|
|
541
|
+
ppTransitionSpeedFast = 3
|
|
542
|
+
}
|
|
543
|
+
|
|
544
|
+
declare enum PpMouseActivation {
|
|
545
|
+
ppMouseClick = 1,
|
|
546
|
+
ppMouseOver = 2
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
declare enum PpActionType {
|
|
550
|
+
ppActionMixed = -2,
|
|
551
|
+
ppActionNone = 0,
|
|
552
|
+
ppActionNextSlide = 1,
|
|
553
|
+
ppActionPreviousSlide = 2,
|
|
554
|
+
ppActionFirstSlide = 3,
|
|
555
|
+
ppActionLastSlide = 4,
|
|
556
|
+
ppActionLastSlideViewed = 5,
|
|
557
|
+
ppActionEndShow = 6,
|
|
558
|
+
ppActionHyperlink = 7,
|
|
559
|
+
ppActionRunMacro = 8,
|
|
560
|
+
ppActionRunProgram = 9,
|
|
561
|
+
ppActionNamedSlideShow = 10,
|
|
562
|
+
ppActionOLEVerb = 11,
|
|
563
|
+
ppActionPlay = 12
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
declare enum PpPlaceholderType {
|
|
567
|
+
ppPlaceholderMixed = -2,
|
|
568
|
+
ppPlaceholderTitle = 1,
|
|
569
|
+
ppPlaceholderBody = 2,
|
|
570
|
+
ppPlaceholderCenterTitle = 3,
|
|
571
|
+
ppPlaceholderSubtitle = 4,
|
|
572
|
+
ppPlaceholderVerticalTitle = 5,
|
|
573
|
+
ppPlaceholderVerticalBody = 6,
|
|
574
|
+
ppPlaceholderObject = 7,
|
|
575
|
+
ppPlaceholderChart = 8,
|
|
576
|
+
ppPlaceholderBitmap = 9,
|
|
577
|
+
ppPlaceholderMediaClip = 10,
|
|
578
|
+
ppPlaceholderOrgChart = 11,
|
|
579
|
+
ppPlaceholderTable = 12,
|
|
580
|
+
ppPlaceholderSlideNumber = 13,
|
|
581
|
+
ppPlaceholderHeader = 14,
|
|
582
|
+
ppPlaceholderFooter = 15,
|
|
583
|
+
ppPlaceholderDate = 16,
|
|
584
|
+
ppPlaceholderVerticalObject = 17,
|
|
585
|
+
ppPlaceholderPicture = 18,
|
|
586
|
+
ppPlaceholderCameo = 19
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
declare enum PpSlideShowType {
|
|
590
|
+
ppShowTypeSpeaker = 1,
|
|
591
|
+
ppShowTypeWindow = 2,
|
|
592
|
+
ppShowTypeKiosk = 3,
|
|
593
|
+
ppShowTypeWindow2 = 4
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
declare enum PpPrintRangeType {
|
|
597
|
+
ppPrintAll = 1,
|
|
598
|
+
ppPrintSelection = 2,
|
|
599
|
+
ppPrintCurrent = 3,
|
|
600
|
+
ppPrintSlideRange = 4,
|
|
601
|
+
ppPrintNamedSlideShow = 5,
|
|
602
|
+
ppPrintSection = 6
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
declare enum PpAutoSize {
|
|
606
|
+
ppAutoSizeMixed = -2,
|
|
607
|
+
ppAutoSizeNone = 0,
|
|
608
|
+
ppAutoSizeShapeToFitText = 1
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
declare enum PpMediaType {
|
|
612
|
+
ppMediaTypeMixed = -2,
|
|
613
|
+
ppMediaTypeOther = 1,
|
|
614
|
+
ppMediaTypeSound = 2,
|
|
615
|
+
ppMediaTypeMovie = 3
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
declare enum PpSoundFormatType {
|
|
619
|
+
ppSoundFormatMixed = -2,
|
|
620
|
+
ppSoundFormatNone = 0,
|
|
621
|
+
ppSoundFormatWAV = 1,
|
|
622
|
+
ppSoundFormatMIDI = 2,
|
|
623
|
+
ppSoundFormatCDAudio = 3
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
declare enum PpFarEastLineBreakLevel {
|
|
627
|
+
ppFarEastLineBreakLevelNormal = 1,
|
|
628
|
+
ppFarEastLineBreakLevelStrict = 2,
|
|
629
|
+
ppFarEastLineBreakLevelCustom = 3
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
declare enum PpSlideShowRangeType {
|
|
633
|
+
ppShowAll = 1,
|
|
634
|
+
ppShowSlideRange = 2,
|
|
635
|
+
ppShowNamedSlideShow = 3
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
declare enum PpFrameColors {
|
|
639
|
+
ppFrameColorsBrowserColors = 1,
|
|
640
|
+
ppFrameColorsPresentationSchemeTextColor = 2,
|
|
641
|
+
ppFrameColorsPresentationSchemeAccentColor = 3,
|
|
642
|
+
ppFrameColorsWhiteTextOnBlack = 4,
|
|
643
|
+
ppFrameColorsBlackTextOnWhite = 5
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
declare enum PpBorderType {
|
|
647
|
+
ppBorderTop = 1,
|
|
648
|
+
ppBorderLeft = 2,
|
|
649
|
+
ppBorderBottom = 3,
|
|
650
|
+
ppBorderRight = 4,
|
|
651
|
+
ppBorderDiagonalDown = 5,
|
|
652
|
+
ppBorderDiagonalUp = 6
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
declare enum PpHTMLVersion {
|
|
656
|
+
ppHTMLv3 = 1,
|
|
657
|
+
ppHTMLv4 = 2,
|
|
658
|
+
ppHTMLDual = 3,
|
|
659
|
+
ppHTMLAutodetect = 4
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
declare enum PpPublishSourceType {
|
|
663
|
+
ppPublishAll = 1,
|
|
664
|
+
ppPublishSlideRange = 2,
|
|
665
|
+
ppPublishNamedSlideShow = 3
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
declare enum PpBulletType {
|
|
669
|
+
ppBulletMixed = -2,
|
|
670
|
+
ppBulletNone = 0,
|
|
671
|
+
ppBulletUnnumbered = 1,
|
|
672
|
+
ppBulletNumbered = 2,
|
|
673
|
+
ppBulletPicture = 3
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
declare enum PpNumberedBulletStyle {
|
|
677
|
+
ppBulletStyleMixed = -2,
|
|
678
|
+
ppBulletAlphaLCPeriod = 0,
|
|
679
|
+
ppBulletAlphaUCPeriod = 1,
|
|
680
|
+
ppBulletArabicParenRight = 2,
|
|
681
|
+
ppBulletArabicPeriod = 3,
|
|
682
|
+
ppBulletRomanLCParenBoth = 4,
|
|
683
|
+
ppBulletRomanLCParenRight = 5,
|
|
684
|
+
ppBulletRomanLCPeriod = 6,
|
|
685
|
+
ppBulletRomanUCPeriod = 7,
|
|
686
|
+
ppBulletAlphaLCParenBoth = 8,
|
|
687
|
+
ppBulletAlphaLCParenRight = 9,
|
|
688
|
+
ppBulletAlphaUCParenBoth = 10,
|
|
689
|
+
ppBulletAlphaUCParenRight = 11,
|
|
690
|
+
ppBulletArabicParenBoth = 12,
|
|
691
|
+
ppBulletArabicPlain = 13,
|
|
692
|
+
ppBulletRomanUCParenBoth = 14,
|
|
693
|
+
ppBulletRomanUCParenRight = 15,
|
|
694
|
+
ppBulletSimpChinPlain = 16,
|
|
695
|
+
ppBulletSimpChinPeriod = 17,
|
|
696
|
+
ppBulletCircleNumDBPlain = 18,
|
|
697
|
+
ppBulletCircleNumWDWhitePlain = 19,
|
|
698
|
+
ppBulletCircleNumWDBlackPlain = 20,
|
|
699
|
+
ppBulletTradChinPlain = 21,
|
|
700
|
+
ppBulletTradChinPeriod = 22,
|
|
701
|
+
ppBulletArabicAlphaDash = 23,
|
|
702
|
+
ppBulletArabicAbjadDash = 24,
|
|
703
|
+
ppBulletHebrewAlphaDash = 25,
|
|
704
|
+
ppBulletKanjiKoreanPlain = 26,
|
|
705
|
+
ppBulletKanjiKoreanPeriod = 27,
|
|
706
|
+
ppBulletArabicDBPlain = 28,
|
|
707
|
+
ppBulletArabicDBPeriod = 29,
|
|
708
|
+
ppBulletThaiAlphaPeriod = 30,
|
|
709
|
+
ppBulletThaiAlphaParenRight = 31,
|
|
710
|
+
ppBulletThaiAlphaParenBoth = 32,
|
|
711
|
+
ppBulletThaiNumPeriod = 33,
|
|
712
|
+
ppBulletThaiNumParenRight = 34,
|
|
713
|
+
ppBulletThaiNumParenBoth = 35,
|
|
714
|
+
ppBulletHindiAlphaPeriod = 36,
|
|
715
|
+
ppBulletHindiNumPeriod = 37,
|
|
716
|
+
ppBulletKanjiSimpChinDBPeriod = 38,
|
|
717
|
+
ppBulletHindiNumParenRight = 39,
|
|
718
|
+
ppBulletHindiAlpha1Period = 40
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
declare enum PpShapeFormat {
|
|
722
|
+
ppShapeFormatGIF = 0,
|
|
723
|
+
ppShapeFormatJPG = 1,
|
|
724
|
+
ppShapeFormatPNG = 2,
|
|
725
|
+
ppShapeFormatBMP = 3,
|
|
726
|
+
ppShapeFormatWMF = 4,
|
|
727
|
+
ppShapeFormatEMF = 5,
|
|
728
|
+
ppShapeFormatSVG = 6
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
declare enum PpExportMode {
|
|
732
|
+
ppRelativeToSlide = 1,
|
|
733
|
+
ppClipRelativeToSlide = 2,
|
|
734
|
+
ppScaleToFit = 3,
|
|
735
|
+
ppScaleXY = 4
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
declare enum PpPasteDataType {
|
|
739
|
+
ppPasteDefault = 0,
|
|
740
|
+
ppPasteBitmap = 1,
|
|
741
|
+
ppPasteEnhancedMetafile = 2,
|
|
742
|
+
ppPasteMetafilePicture = 3,
|
|
743
|
+
ppPasteGIF = 4,
|
|
744
|
+
ppPasteJPG = 5,
|
|
745
|
+
ppPastePNG = 6,
|
|
746
|
+
ppPasteText = 7,
|
|
747
|
+
ppPasteHTML = 8,
|
|
748
|
+
ppPasteRTF = 9,
|
|
749
|
+
ppPasteOLEObject = 10,
|
|
750
|
+
ppPasteShape = 11,
|
|
751
|
+
ppPasteSVG = 12
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
declare enum MsoAnimEffect {
|
|
755
|
+
msoAnimEffectCustom = 0,
|
|
756
|
+
msoAnimEffectAppear = 1,
|
|
757
|
+
msoAnimEffectFly = 2,
|
|
758
|
+
msoAnimEffectBlinds = 3,
|
|
759
|
+
msoAnimEffectBox = 4,
|
|
760
|
+
msoAnimEffectCheckerboard = 5,
|
|
761
|
+
msoAnimEffectCircle = 6,
|
|
762
|
+
msoAnimEffectCrawl = 7,
|
|
763
|
+
msoAnimEffectDiamond = 8,
|
|
764
|
+
msoAnimEffectDissolve = 9,
|
|
765
|
+
msoAnimEffectFade = 10,
|
|
766
|
+
msoAnimEffectFlashOnce = 11,
|
|
767
|
+
msoAnimEffectPeek = 12,
|
|
768
|
+
msoAnimEffectPlus = 13,
|
|
769
|
+
msoAnimEffectRandomBars = 14,
|
|
770
|
+
msoAnimEffectSpiral = 15,
|
|
771
|
+
msoAnimEffectSplit = 16,
|
|
772
|
+
msoAnimEffectStretch = 17,
|
|
773
|
+
msoAnimEffectStrips = 18,
|
|
774
|
+
msoAnimEffectSwivel = 19,
|
|
775
|
+
msoAnimEffectWedge = 20,
|
|
776
|
+
msoAnimEffectWheel = 21,
|
|
777
|
+
msoAnimEffectWipe = 22,
|
|
778
|
+
msoAnimEffectZoom = 23,
|
|
779
|
+
msoAnimEffectRandomEffects = 24,
|
|
780
|
+
msoAnimEffectBoomerang = 25,
|
|
781
|
+
msoAnimEffectBounce = 26,
|
|
782
|
+
msoAnimEffectColorReveal = 27,
|
|
783
|
+
msoAnimEffectCredits = 28,
|
|
784
|
+
msoAnimEffectEaseIn = 29,
|
|
785
|
+
msoAnimEffectFloat = 30,
|
|
786
|
+
msoAnimEffectGrowAndTurn = 31,
|
|
787
|
+
msoAnimEffectLightSpeed = 32,
|
|
788
|
+
msoAnimEffectPinwheel = 33,
|
|
789
|
+
msoAnimEffectRiseUp = 34,
|
|
790
|
+
msoAnimEffectSwish = 35,
|
|
791
|
+
msoAnimEffectThinLine = 36,
|
|
792
|
+
msoAnimEffectUnfold = 37,
|
|
793
|
+
msoAnimEffectWhip = 38,
|
|
794
|
+
msoAnimEffectAscend = 39,
|
|
795
|
+
msoAnimEffectCenterRevolve = 40,
|
|
796
|
+
msoAnimEffectFadedSwivel = 41,
|
|
797
|
+
msoAnimEffectDescend = 42,
|
|
798
|
+
msoAnimEffectSling = 43,
|
|
799
|
+
msoAnimEffectSpinner = 44,
|
|
800
|
+
msoAnimEffectStretchy = 45,
|
|
801
|
+
msoAnimEffectZip = 46,
|
|
802
|
+
msoAnimEffectArcUp = 47,
|
|
803
|
+
msoAnimEffectFadedZoom = 48,
|
|
804
|
+
msoAnimEffectGlide = 49,
|
|
805
|
+
msoAnimEffectExpand = 50,
|
|
806
|
+
msoAnimEffectFlip = 51,
|
|
807
|
+
msoAnimEffectShimmer = 52,
|
|
808
|
+
msoAnimEffectFold = 53,
|
|
809
|
+
msoAnimEffectChangeFillColor = 54,
|
|
810
|
+
msoAnimEffectChangeFont = 55,
|
|
811
|
+
msoAnimEffectChangeFontColor = 56,
|
|
812
|
+
msoAnimEffectChangeFontSize = 57,
|
|
813
|
+
msoAnimEffectChangeFontStyle = 58,
|
|
814
|
+
msoAnimEffectGrowShrink = 59,
|
|
815
|
+
msoAnimEffectChangeLineColor = 60,
|
|
816
|
+
msoAnimEffectSpin = 61,
|
|
817
|
+
msoAnimEffectTransparency = 62,
|
|
818
|
+
msoAnimEffectBoldFlash = 63,
|
|
819
|
+
msoAnimEffectBlast = 64,
|
|
820
|
+
msoAnimEffectBoldReveal = 65,
|
|
821
|
+
msoAnimEffectBrushOnColor = 66,
|
|
822
|
+
msoAnimEffectBrushOnUnderline = 67,
|
|
823
|
+
msoAnimEffectColorBlend = 68,
|
|
824
|
+
msoAnimEffectColorWave = 69,
|
|
825
|
+
msoAnimEffectComplementaryColor = 70,
|
|
826
|
+
msoAnimEffectComplementaryColor2 = 71,
|
|
827
|
+
msoAnimEffectContrastingColor = 72,
|
|
828
|
+
msoAnimEffectDarken = 73,
|
|
829
|
+
msoAnimEffectDesaturate = 74,
|
|
830
|
+
msoAnimEffectFlashBulb = 75,
|
|
831
|
+
msoAnimEffectFlicker = 76,
|
|
832
|
+
msoAnimEffectGrowWithColor = 77,
|
|
833
|
+
msoAnimEffectLighten = 78,
|
|
834
|
+
msoAnimEffectStyleEmphasis = 79,
|
|
835
|
+
msoAnimEffectTeeter = 80,
|
|
836
|
+
msoAnimEffectVerticalGrow = 81,
|
|
837
|
+
msoAnimEffectWave = 82,
|
|
838
|
+
msoAnimEffectMediaPlay = 83,
|
|
839
|
+
msoAnimEffectMediaPause = 84,
|
|
840
|
+
msoAnimEffectMediaStop = 85,
|
|
841
|
+
msoAnimEffectPathCircle = 86,
|
|
842
|
+
msoAnimEffectPathRightTriangle = 87,
|
|
843
|
+
msoAnimEffectPathDiamond = 88,
|
|
844
|
+
msoAnimEffectPathHexagon = 89,
|
|
845
|
+
msoAnimEffectPath5PointStar = 90,
|
|
846
|
+
msoAnimEffectPathCrescentMoon = 91,
|
|
847
|
+
msoAnimEffectPathSquare = 92,
|
|
848
|
+
msoAnimEffectPathTrapezoid = 93,
|
|
849
|
+
msoAnimEffectPathHeart = 94,
|
|
850
|
+
msoAnimEffectPathOctagon = 95,
|
|
851
|
+
msoAnimEffectPath6PointStar = 96,
|
|
852
|
+
msoAnimEffectPathFootball = 97,
|
|
853
|
+
msoAnimEffectPathEqualTriangle = 98,
|
|
854
|
+
msoAnimEffectPathParallelogram = 99,
|
|
855
|
+
msoAnimEffectPathPentagon = 100,
|
|
856
|
+
msoAnimEffectPath4PointStar = 101,
|
|
857
|
+
msoAnimEffectPath8PointStar = 102,
|
|
858
|
+
msoAnimEffectPathTeardrop = 103,
|
|
859
|
+
msoAnimEffectPathPointyStar = 104,
|
|
860
|
+
msoAnimEffectPathCurvedSquare = 105,
|
|
861
|
+
msoAnimEffectPathCurvedX = 106,
|
|
862
|
+
msoAnimEffectPathVerticalFigure8 = 107,
|
|
863
|
+
msoAnimEffectPathCurvyStar = 108,
|
|
864
|
+
msoAnimEffectPathLoopdeLoop = 109,
|
|
865
|
+
msoAnimEffectPathBuzzsaw = 110,
|
|
866
|
+
msoAnimEffectPathHorizontalFigure8 = 111,
|
|
867
|
+
msoAnimEffectPathPeanut = 112,
|
|
868
|
+
msoAnimEffectPathFigure8Four = 113,
|
|
869
|
+
msoAnimEffectPathNeutron = 114,
|
|
870
|
+
msoAnimEffectPathSwoosh = 115,
|
|
871
|
+
msoAnimEffectPathBean = 116,
|
|
872
|
+
msoAnimEffectPathPlus = 117,
|
|
873
|
+
msoAnimEffectPathInvertedTriangle = 118,
|
|
874
|
+
msoAnimEffectPathInvertedSquare = 119,
|
|
875
|
+
msoAnimEffectPathLeft = 120,
|
|
876
|
+
msoAnimEffectPathTurnRight = 121,
|
|
877
|
+
msoAnimEffectPathArcDown = 122,
|
|
878
|
+
msoAnimEffectPathZigzag = 123,
|
|
879
|
+
msoAnimEffectPathSCurve2 = 124,
|
|
880
|
+
msoAnimEffectPathSineWave = 125,
|
|
881
|
+
msoAnimEffectPathBounceLeft = 126,
|
|
882
|
+
msoAnimEffectPathDown = 127,
|
|
883
|
+
msoAnimEffectPathTurnUp = 128,
|
|
884
|
+
msoAnimEffectPathArcUp = 129,
|
|
885
|
+
msoAnimEffectPathHeartbeat = 130,
|
|
886
|
+
msoAnimEffectPathSpiralRight = 131,
|
|
887
|
+
msoAnimEffectPathWave = 132,
|
|
888
|
+
msoAnimEffectPathCurvyLeft = 133,
|
|
889
|
+
msoAnimEffectPathDiagonalDownRight = 134,
|
|
890
|
+
msoAnimEffectPathTurnDown = 135,
|
|
891
|
+
msoAnimEffectPathArcLeft = 136,
|
|
892
|
+
msoAnimEffectPathFunnel = 137,
|
|
893
|
+
msoAnimEffectPathSpring = 138,
|
|
894
|
+
msoAnimEffectPathBounceRight = 139,
|
|
895
|
+
msoAnimEffectPathSpiralLeft = 140,
|
|
896
|
+
msoAnimEffectPathDiagonalUpRight = 141,
|
|
897
|
+
msoAnimEffectPathTurnUpRight = 142,
|
|
898
|
+
msoAnimEffectPathArcRight = 143,
|
|
899
|
+
msoAnimEffectPathSCurve1 = 144,
|
|
900
|
+
msoAnimEffectPathDecayingWave = 145,
|
|
901
|
+
msoAnimEffectPathCurvyRight = 146,
|
|
902
|
+
msoAnimEffectPathStairsDown = 147,
|
|
903
|
+
msoAnimEffectPathUp = 148,
|
|
904
|
+
msoAnimEffectPathRight = 149,
|
|
905
|
+
msoAnimEffectMediaPlayFromBookmark = 150,
|
|
906
|
+
msoAnimEffect3DArrive = 151,
|
|
907
|
+
msoAnimEffect3DTurntable = 152,
|
|
908
|
+
msoAnimEffect3DSwing = 153,
|
|
909
|
+
msoAnimEffect3DJumpAndTurn = 154
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
declare enum MsoAnimateByLevel {
|
|
913
|
+
msoAnimateLevelMixed = -1,
|
|
914
|
+
msoAnimateLevelNone = 0,
|
|
915
|
+
msoAnimateTextByAllLevels = 1,
|
|
916
|
+
msoAnimateTextByFirstLevel = 2,
|
|
917
|
+
msoAnimateTextBySecondLevel = 3,
|
|
918
|
+
msoAnimateTextByThirdLevel = 4,
|
|
919
|
+
msoAnimateTextByFourthLevel = 5,
|
|
920
|
+
msoAnimateTextByFifthLevel = 6,
|
|
921
|
+
msoAnimateChartAllAtOnce = 7,
|
|
922
|
+
msoAnimateChartByCategory = 8,
|
|
923
|
+
msoAnimateChartByCategoryElements = 9,
|
|
924
|
+
msoAnimateChartBySeries = 10,
|
|
925
|
+
msoAnimateChartBySeriesElements = 11,
|
|
926
|
+
msoAnimateDiagramAllAtOnce = 12,
|
|
927
|
+
msoAnimateDiagramDepthByNode = 13,
|
|
928
|
+
msoAnimateDiagramDepthByBranch = 14,
|
|
929
|
+
msoAnimateDiagramBreadthByNode = 15,
|
|
930
|
+
msoAnimateDiagramBreadthByLevel = 16,
|
|
931
|
+
msoAnimateDiagramClockwise = 17,
|
|
932
|
+
msoAnimateDiagramClockwiseIn = 18,
|
|
933
|
+
msoAnimateDiagramClockwiseOut = 19,
|
|
934
|
+
msoAnimateDiagramCounterClockwise = 20,
|
|
935
|
+
msoAnimateDiagramCounterClockwiseIn = 21,
|
|
936
|
+
msoAnimateDiagramCounterClockwiseOut = 22,
|
|
937
|
+
msoAnimateDiagramInByRing = 23,
|
|
938
|
+
msoAnimateDiagramOutByRing = 24,
|
|
939
|
+
msoAnimateDiagramUp = 25,
|
|
940
|
+
msoAnimateDiagramDown = 26
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
declare enum MsoAnimTriggerType {
|
|
944
|
+
msoAnimTriggerMixed = -1,
|
|
945
|
+
msoAnimTriggerNone = 0,
|
|
946
|
+
msoAnimTriggerOnPageClick = 1,
|
|
947
|
+
msoAnimTriggerWithPrevious = 2,
|
|
948
|
+
msoAnimTriggerAfterPrevious = 3,
|
|
949
|
+
msoAnimTriggerOnShapeClick = 4,
|
|
950
|
+
msoAnimTriggerOnMediaBookmark = 5
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
declare enum MsoAnimAfterEffect {
|
|
954
|
+
msoAnimAfterEffectMixed = -1,
|
|
955
|
+
msoAnimAfterEffectNone = 0,
|
|
956
|
+
msoAnimAfterEffectDim = 1,
|
|
957
|
+
msoAnimAfterEffectHide = 2,
|
|
958
|
+
msoAnimAfterEffectHideOnNextClick = 3
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
declare enum MsoAnimTextUnitEffect {
|
|
962
|
+
msoAnimTextUnitEffectMixed = -1,
|
|
963
|
+
msoAnimTextUnitEffectByParagraph = 0,
|
|
964
|
+
msoAnimTextUnitEffectByCharacter = 1,
|
|
965
|
+
msoAnimTextUnitEffectByWord = 2
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
declare enum MsoAnimEffectRestart {
|
|
969
|
+
msoAnimEffectRestartAlways = 1,
|
|
970
|
+
msoAnimEffectRestartWhenOff = 2,
|
|
971
|
+
msoAnimEffectRestartNever = 3
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
declare enum MsoAnimEffectAfter {
|
|
975
|
+
msoAnimEffectAfterFreeze = 1,
|
|
976
|
+
msoAnimEffectAfterRemove = 2,
|
|
977
|
+
msoAnimEffectAfterHold = 3,
|
|
978
|
+
msoAnimEffectAfterTransition = 4
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
declare enum MsoAnimDirection {
|
|
982
|
+
msoAnimDirectionNone = 0,
|
|
983
|
+
msoAnimDirectionUp = 1,
|
|
984
|
+
msoAnimDirectionRight = 2,
|
|
985
|
+
msoAnimDirectionDown = 3,
|
|
986
|
+
msoAnimDirectionLeft = 4,
|
|
987
|
+
msoAnimDirectionOrdinalMask = 5,
|
|
988
|
+
msoAnimDirectionUpLeft = 6,
|
|
989
|
+
msoAnimDirectionUpRight = 7,
|
|
990
|
+
msoAnimDirectionDownRight = 8,
|
|
991
|
+
msoAnimDirectionDownLeft = 9,
|
|
992
|
+
msoAnimDirectionTop = 10,
|
|
993
|
+
msoAnimDirectionBottom = 11,
|
|
994
|
+
msoAnimDirectionTopLeft = 12,
|
|
995
|
+
msoAnimDirectionTopRight = 13,
|
|
996
|
+
msoAnimDirectionBottomRight = 14,
|
|
997
|
+
msoAnimDirectionBottomLeft = 15,
|
|
998
|
+
msoAnimDirectionHorizontal = 16,
|
|
999
|
+
msoAnimDirectionVertical = 17,
|
|
1000
|
+
msoAnimDirectionAcross = 18,
|
|
1001
|
+
msoAnimDirectionIn = 19,
|
|
1002
|
+
msoAnimDirectionOut = 20,
|
|
1003
|
+
msoAnimDirectionClockwise = 21,
|
|
1004
|
+
msoAnimDirectionCounterclockwise = 22,
|
|
1005
|
+
msoAnimDirectionHorizontalIn = 23,
|
|
1006
|
+
msoAnimDirectionHorizontalOut = 24,
|
|
1007
|
+
msoAnimDirectionVerticalIn = 25,
|
|
1008
|
+
msoAnimDirectionVerticalOut = 26,
|
|
1009
|
+
msoAnimDirectionSlightly = 27,
|
|
1010
|
+
msoAnimDirectionCenter = 28,
|
|
1011
|
+
msoAnimDirectionInSlightly = 29,
|
|
1012
|
+
msoAnimDirectionInCenter = 30,
|
|
1013
|
+
msoAnimDirectionInBottom = 31,
|
|
1014
|
+
msoAnimDirectionOutSlightly = 32,
|
|
1015
|
+
msoAnimDirectionOutCenter = 33,
|
|
1016
|
+
msoAnimDirectionOutBottom = 34,
|
|
1017
|
+
msoAnimDirectionFontBold = 35,
|
|
1018
|
+
msoAnimDirectionFontItalic = 36,
|
|
1019
|
+
msoAnimDirectionFontUnderline = 37,
|
|
1020
|
+
msoAnimDirectionFontStrikethrough = 38,
|
|
1021
|
+
msoAnimDirectionFontShadow = 39,
|
|
1022
|
+
msoAnimDirectionFontAllCaps = 40,
|
|
1023
|
+
msoAnimDirectionInstant = 41,
|
|
1024
|
+
msoAnimDirectionGradual = 42,
|
|
1025
|
+
msoAnimDirectionCycleClockwise = 43,
|
|
1026
|
+
msoAnimDirectionCycleCounterclockwise = 44
|
|
1027
|
+
}
|
|
1028
|
+
|
|
1029
|
+
declare enum MsoAnimType {
|
|
1030
|
+
msoAnimTypeMixed = -2,
|
|
1031
|
+
msoAnimTypeNone = 0,
|
|
1032
|
+
msoAnimTypeMotion = 1,
|
|
1033
|
+
msoAnimTypeColor = 2,
|
|
1034
|
+
msoAnimTypeScale = 3,
|
|
1035
|
+
msoAnimTypeRotation = 4,
|
|
1036
|
+
msoAnimTypeProperty = 5,
|
|
1037
|
+
msoAnimTypeCommand = 6,
|
|
1038
|
+
msoAnimTypeFilter = 7,
|
|
1039
|
+
msoAnimTypeSet = 8
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
|
+
declare enum MsoAnimAdditive {
|
|
1043
|
+
msoAnimAdditiveAddBase = 1,
|
|
1044
|
+
msoAnimAdditiveAddSum = 2
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
declare enum MsoAnimAccumulate {
|
|
1048
|
+
msoAnimAccumulateNone = 1,
|
|
1049
|
+
msoAnimAccumulateAlways = 2
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
declare enum MsoAnimProperty {
|
|
1053
|
+
msoAnimNone = 0,
|
|
1054
|
+
msoAnimX = 1,
|
|
1055
|
+
msoAnimY = 2,
|
|
1056
|
+
msoAnimWidth = 3,
|
|
1057
|
+
msoAnimHeight = 4,
|
|
1058
|
+
msoAnimOpacity = 5,
|
|
1059
|
+
msoAnimRotation = 6,
|
|
1060
|
+
msoAnimColor = 7,
|
|
1061
|
+
msoAnimVisibility = 8,
|
|
1062
|
+
msoAnimTextFontBold = 100,
|
|
1063
|
+
msoAnimTextFontColor = 101,
|
|
1064
|
+
msoAnimTextFontEmboss = 102,
|
|
1065
|
+
msoAnimTextFontItalic = 103,
|
|
1066
|
+
msoAnimTextFontName = 104,
|
|
1067
|
+
msoAnimTextFontShadow = 105,
|
|
1068
|
+
msoAnimTextFontSize = 106,
|
|
1069
|
+
msoAnimTextFontSubscript = 107,
|
|
1070
|
+
msoAnimTextFontSuperscript = 108,
|
|
1071
|
+
msoAnimTextFontUnderline = 109,
|
|
1072
|
+
msoAnimTextFontStrikeThrough = 110,
|
|
1073
|
+
msoAnimTextBulletCharacter = 111,
|
|
1074
|
+
msoAnimTextBulletFontName = 112,
|
|
1075
|
+
msoAnimTextBulletNumber = 113,
|
|
1076
|
+
msoAnimTextBulletColor = 114,
|
|
1077
|
+
msoAnimTextBulletRelativeSize = 115,
|
|
1078
|
+
msoAnimTextBulletStyle = 116,
|
|
1079
|
+
msoAnimTextBulletType = 117,
|
|
1080
|
+
msoAnimShapePictureContrast = 1000,
|
|
1081
|
+
msoAnimShapePictureBrightness = 1001,
|
|
1082
|
+
msoAnimShapePictureGamma = 1002,
|
|
1083
|
+
msoAnimShapePictureGrayscale = 1003,
|
|
1084
|
+
msoAnimShapeFillOn = 1004,
|
|
1085
|
+
msoAnimShapeFillColor = 1005,
|
|
1086
|
+
msoAnimShapeFillOpacity = 1006,
|
|
1087
|
+
msoAnimShapeFillBackColor = 1007,
|
|
1088
|
+
msoAnimShapeLineOn = 1008,
|
|
1089
|
+
msoAnimShapeLineColor = 1009,
|
|
1090
|
+
msoAnimShapeShadowOn = 1010,
|
|
1091
|
+
msoAnimShapeShadowType = 1011,
|
|
1092
|
+
msoAnimShapeShadowColor = 1012,
|
|
1093
|
+
msoAnimShapeShadowOpacity = 1013,
|
|
1094
|
+
msoAnimShapeShadowOffsetX = 1014,
|
|
1095
|
+
msoAnimShapeShadowOffsetY = 1015
|
|
1096
|
+
}
|
|
1097
|
+
|
|
1098
|
+
declare enum PpAlertLevel {
|
|
1099
|
+
ppAlertsNone = 1,
|
|
1100
|
+
ppAlertsAll = 2
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
declare enum PpRevisionInfo {
|
|
1104
|
+
ppRevisionInfoNone = 0,
|
|
1105
|
+
ppRevisionInfoBaseline = 1,
|
|
1106
|
+
ppRevisionInfoMerged = 2
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
declare enum MsoAnimCommandType {
|
|
1110
|
+
msoAnimCommandTypeEvent = 0,
|
|
1111
|
+
msoAnimCommandTypeCall = 1,
|
|
1112
|
+
msoAnimCommandTypeVerb = 2
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
declare enum MsoAnimFilterEffectType {
|
|
1116
|
+
msoAnimFilterEffectTypeNone = 0,
|
|
1117
|
+
msoAnimFilterEffectTypeBarn = 1,
|
|
1118
|
+
msoAnimFilterEffectTypeBlinds = 2,
|
|
1119
|
+
msoAnimFilterEffectTypeBox = 3,
|
|
1120
|
+
msoAnimFilterEffectTypeCheckerboard = 4,
|
|
1121
|
+
msoAnimFilterEffectTypeCircle = 5,
|
|
1122
|
+
msoAnimFilterEffectTypeDiamond = 6,
|
|
1123
|
+
msoAnimFilterEffectTypeDissolve = 7,
|
|
1124
|
+
msoAnimFilterEffectTypeFade = 8,
|
|
1125
|
+
msoAnimFilterEffectTypeImage = 9,
|
|
1126
|
+
msoAnimFilterEffectTypePixelate = 10,
|
|
1127
|
+
msoAnimFilterEffectTypePlus = 11,
|
|
1128
|
+
msoAnimFilterEffectTypeRandomBar = 12,
|
|
1129
|
+
msoAnimFilterEffectTypeSlide = 13,
|
|
1130
|
+
msoAnimFilterEffectTypeStretch = 14,
|
|
1131
|
+
msoAnimFilterEffectTypeStrips = 15,
|
|
1132
|
+
msoAnimFilterEffectTypeWedge = 16,
|
|
1133
|
+
msoAnimFilterEffectTypeWheel = 17,
|
|
1134
|
+
msoAnimFilterEffectTypeWipe = 18
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
declare enum MsoAnimFilterEffectSubtype {
|
|
1138
|
+
msoAnimFilterEffectSubtypeNone = 0,
|
|
1139
|
+
msoAnimFilterEffectSubtypeInVertical = 1,
|
|
1140
|
+
msoAnimFilterEffectSubtypeOutVertical = 2,
|
|
1141
|
+
msoAnimFilterEffectSubtypeInHorizontal = 3,
|
|
1142
|
+
msoAnimFilterEffectSubtypeOutHorizontal = 4,
|
|
1143
|
+
msoAnimFilterEffectSubtypeHorizontal = 5,
|
|
1144
|
+
msoAnimFilterEffectSubtypeVertical = 6,
|
|
1145
|
+
msoAnimFilterEffectSubtypeIn = 7,
|
|
1146
|
+
msoAnimFilterEffectSubtypeOut = 8,
|
|
1147
|
+
msoAnimFilterEffectSubtypeAcross = 9,
|
|
1148
|
+
msoAnimFilterEffectSubtypeFromLeft = 10,
|
|
1149
|
+
msoAnimFilterEffectSubtypeFromRight = 11,
|
|
1150
|
+
msoAnimFilterEffectSubtypeFromTop = 12,
|
|
1151
|
+
msoAnimFilterEffectSubtypeFromBottom = 13,
|
|
1152
|
+
msoAnimFilterEffectSubtypeDownLeft = 14,
|
|
1153
|
+
msoAnimFilterEffectSubtypeUpLeft = 15,
|
|
1154
|
+
msoAnimFilterEffectSubtypeDownRight = 16,
|
|
1155
|
+
msoAnimFilterEffectSubtypeUpRight = 17,
|
|
1156
|
+
msoAnimFilterEffectSubtypeSpokes1 = 18,
|
|
1157
|
+
msoAnimFilterEffectSubtypeSpokes2 = 19,
|
|
1158
|
+
msoAnimFilterEffectSubtypeSpokes3 = 20,
|
|
1159
|
+
msoAnimFilterEffectSubtypeSpokes4 = 21,
|
|
1160
|
+
msoAnimFilterEffectSubtypeSpokes8 = 22,
|
|
1161
|
+
msoAnimFilterEffectSubtypeLeft = 23,
|
|
1162
|
+
msoAnimFilterEffectSubtypeRight = 24,
|
|
1163
|
+
msoAnimFilterEffectSubtypeDown = 25,
|
|
1164
|
+
msoAnimFilterEffectSubtypeUp = 26
|
|
1165
|
+
}
|
|
1166
|
+
|
|
1167
|
+
declare enum PpRemoveDocInfoType {
|
|
1168
|
+
ppRDIComments = 1,
|
|
1169
|
+
ppRDIRemovePersonalInformation = 4,
|
|
1170
|
+
ppRDIDocumentProperties = 8,
|
|
1171
|
+
ppRDIDocumentWorkspace = 10,
|
|
1172
|
+
ppRDIInkAnnotations = 11,
|
|
1173
|
+
ppRDIPublishPath = 13,
|
|
1174
|
+
ppRDIDocumentServerProperties = 14,
|
|
1175
|
+
ppRDIDocumentManagementPolicy = 15,
|
|
1176
|
+
ppRDIContentType = 16,
|
|
1177
|
+
ppRDISlideUpdateInformation = 17,
|
|
1178
|
+
ppRDIAtMentions = 18,
|
|
1179
|
+
ppRDIAll = 99
|
|
1180
|
+
}
|
|
1181
|
+
|
|
1182
|
+
declare enum PpCheckInVersionType {
|
|
1183
|
+
ppCheckInMinorVersion = 0,
|
|
1184
|
+
ppCheckInMajorVersion = 1,
|
|
1185
|
+
ppCheckInOverwriteVersion = 2
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
declare enum MsoClickState {
|
|
1189
|
+
msoClickStateAfterAllAnimations = -2,
|
|
1190
|
+
msoClickStateBeforeAutomaticAnimations = -1
|
|
1191
|
+
}
|
|
1192
|
+
|
|
1193
|
+
declare enum PpFixedFormatType {
|
|
1194
|
+
ppFixedFormatTypeXPS = 1,
|
|
1195
|
+
ppFixedFormatTypePDF = 2
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
declare enum PpFixedFormatIntent {
|
|
1199
|
+
ppFixedFormatIntentScreen = 1,
|
|
1200
|
+
ppFixedFormatIntentPrint = 2
|
|
1201
|
+
}
|
|
1202
|
+
|
|
1203
|
+
declare enum XlBackground {
|
|
1204
|
+
xlBackgroundAutomatic = -4105,
|
|
1205
|
+
xlBackgroundOpaque = 3,
|
|
1206
|
+
xlBackgroundTransparent = 2
|
|
1207
|
+
}
|
|
1208
|
+
|
|
1209
|
+
declare enum XlChartGallery {
|
|
1210
|
+
xlBuiltIn = 21,
|
|
1211
|
+
xlUserDefined = 22,
|
|
1212
|
+
xlAnyGallery = 23
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
declare enum XlChartPicturePlacement {
|
|
1216
|
+
xlSides = 1,
|
|
1217
|
+
xlEnd = 2,
|
|
1218
|
+
xlEndSides = 3,
|
|
1219
|
+
xlFront = 4,
|
|
1220
|
+
xlFrontSides = 5,
|
|
1221
|
+
xlFrontEnd = 6,
|
|
1222
|
+
xlAllFaces = 7
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1225
|
+
declare enum XlDataLabelSeparator {
|
|
1226
|
+
xlDataLabelSeparatorDefault = 1
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
declare enum XlPattern {
|
|
1230
|
+
xlPatternAutomatic = -4105,
|
|
1231
|
+
xlPatternChecker = 9,
|
|
1232
|
+
xlPatternCrissCross = 16,
|
|
1233
|
+
xlPatternDown = -4121,
|
|
1234
|
+
xlPatternGray16 = 17,
|
|
1235
|
+
xlPatternGray25 = -4124,
|
|
1236
|
+
xlPatternGray50 = -4125,
|
|
1237
|
+
xlPatternGray75 = -4126,
|
|
1238
|
+
xlPatternGray8 = 18,
|
|
1239
|
+
xlPatternGrid = 15,
|
|
1240
|
+
xlPatternHorizontal = -4128,
|
|
1241
|
+
xlPatternLightDown = 13,
|
|
1242
|
+
xlPatternLightHorizontal = 11,
|
|
1243
|
+
xlPatternLightUp = 14,
|
|
1244
|
+
xlPatternLightVertical = 12,
|
|
1245
|
+
xlPatternNone = -4142,
|
|
1246
|
+
xlPatternSemiGray75 = 10,
|
|
1247
|
+
xlPatternSolid = 1,
|
|
1248
|
+
xlPatternUp = -4162,
|
|
1249
|
+
xlPatternVertical = -4166,
|
|
1250
|
+
xlPatternLinearGradient = 4000,
|
|
1251
|
+
xlPatternRectangularGradient = 4001
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
declare enum XlPictureAppearance {
|
|
1255
|
+
xlPrinter = 2,
|
|
1256
|
+
xlScreen = 1
|
|
1257
|
+
}
|
|
1258
|
+
|
|
1259
|
+
declare enum XlCopyPictureFormat {
|
|
1260
|
+
xlBitmap = 2,
|
|
1261
|
+
xlPicture = -4147
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
declare enum XlRgbColor {
|
|
1265
|
+
rgbAliceBlue = 16775408,
|
|
1266
|
+
rgbAntiqueWhite = 14150650,
|
|
1267
|
+
rgbAqua = 16776960,
|
|
1268
|
+
rgbAquamarine = 13959039,
|
|
1269
|
+
rgbAzure = 16777200,
|
|
1270
|
+
rgbBeige = 14480885,
|
|
1271
|
+
rgbBisque = 12903679,
|
|
1272
|
+
rgbBlack = 0,
|
|
1273
|
+
rgbBlanchedAlmond = 13495295,
|
|
1274
|
+
rgbBlue = 16711680,
|
|
1275
|
+
rgbBlueViolet = 14822282,
|
|
1276
|
+
rgbBrown = 2763429,
|
|
1277
|
+
rgbBurlyWood = 8894686,
|
|
1278
|
+
rgbCadetBlue = 10526303,
|
|
1279
|
+
rgbChartreuse = 65407,
|
|
1280
|
+
rgbCoral = 5275647,
|
|
1281
|
+
rgbCornflowerBlue = 15570276,
|
|
1282
|
+
rgbCornsilk = 14481663,
|
|
1283
|
+
rgbCrimson = 3937500,
|
|
1284
|
+
rgbDarkBlue = 9109504,
|
|
1285
|
+
rgbDarkCyan = 9145088,
|
|
1286
|
+
rgbDarkGoldenrod = 755384,
|
|
1287
|
+
rgbDarkGreen = 25600,
|
|
1288
|
+
rgbDarkGray = 11119017,
|
|
1289
|
+
rgbDarkGrey = 11119017,
|
|
1290
|
+
rgbDarkKhaki = 7059389,
|
|
1291
|
+
rgbDarkMagenta = 9109643,
|
|
1292
|
+
rgbDarkOliveGreen = 3107669,
|
|
1293
|
+
rgbDarkOrange = 36095,
|
|
1294
|
+
rgbDarkOrchid = 13382297,
|
|
1295
|
+
rgbDarkRed = 139,
|
|
1296
|
+
rgbDarkSalmon = 8034025,
|
|
1297
|
+
rgbDarkSeaGreen = 9419919,
|
|
1298
|
+
rgbDarkSlateBlue = 9125192,
|
|
1299
|
+
rgbDarkSlateGray = 5197615,
|
|
1300
|
+
rgbDarkSlateGrey = 5197615,
|
|
1301
|
+
rgbDarkTurquoise = 13749760,
|
|
1302
|
+
rgbDarkViolet = 13828244,
|
|
1303
|
+
rgbDeepPink = 9639167,
|
|
1304
|
+
rgbDeepSkyBlue = 16760576,
|
|
1305
|
+
rgbDimGray = 6908265,
|
|
1306
|
+
rgbDimGrey = 6908265,
|
|
1307
|
+
rgbDodgerBlue = 16748574,
|
|
1308
|
+
rgbFireBrick = 2237106,
|
|
1309
|
+
rgbFloralWhite = 15792895,
|
|
1310
|
+
rgbForestGreen = 2263842,
|
|
1311
|
+
rgbFuchsia = 16711935,
|
|
1312
|
+
rgbGainsboro = 14474460,
|
|
1313
|
+
rgbGhostWhite = 16775416,
|
|
1314
|
+
rgbGold = 55295,
|
|
1315
|
+
rgbGoldenrod = 2139610,
|
|
1316
|
+
rgbGray = 8421504,
|
|
1317
|
+
rgbGreen = 32768,
|
|
1318
|
+
rgbGrey = 8421504,
|
|
1319
|
+
rgbGreenYellow = 3145645,
|
|
1320
|
+
rgbHoneydew = 15794160,
|
|
1321
|
+
rgbHotPink = 11823615,
|
|
1322
|
+
rgbIndianRed = 6053069,
|
|
1323
|
+
rgbIndigo = 8519755,
|
|
1324
|
+
rgbIvory = 15794175,
|
|
1325
|
+
rgbKhaki = 9234160,
|
|
1326
|
+
rgbLavender = 16443110,
|
|
1327
|
+
rgbLavenderBlush = 16118015,
|
|
1328
|
+
rgbLawnGreen = 64636,
|
|
1329
|
+
rgbLemonChiffon = 13499135,
|
|
1330
|
+
rgbLightBlue = 15128749,
|
|
1331
|
+
rgbLightCoral = 8421616,
|
|
1332
|
+
rgbLightCyan = 9145088,
|
|
1333
|
+
rgbLightGoldenrodYellow = 13826810,
|
|
1334
|
+
rgbLightGray = 13882323,
|
|
1335
|
+
rgbLightGreen = 9498256,
|
|
1336
|
+
rgbLightGrey = 13882323,
|
|
1337
|
+
rgbLightPink = 12695295,
|
|
1338
|
+
rgbLightSalmon = 8036607,
|
|
1339
|
+
rgbLightSeaGreen = 11186720,
|
|
1340
|
+
rgbLightSkyBlue = 16436871,
|
|
1341
|
+
rgbLightSlateGray = 10061943,
|
|
1342
|
+
rgbLightSlateGrey = 10061943,
|
|
1343
|
+
rgbLightSteelBlue = 14599344,
|
|
1344
|
+
rgbLightYellow = 14745599,
|
|
1345
|
+
rgbLime = 65280,
|
|
1346
|
+
rgbLimeGreen = 3329330,
|
|
1347
|
+
rgbLinen = 15134970,
|
|
1348
|
+
rgbMaroon = 128,
|
|
1349
|
+
rgbMediumAquamarine = 11206502,
|
|
1350
|
+
rgbMediumBlue = 13434880,
|
|
1351
|
+
rgbMediumOrchid = 13850042,
|
|
1352
|
+
rgbMediumPurple = 14381203,
|
|
1353
|
+
rgbMediumSeaGreen = 7451452,
|
|
1354
|
+
rgbMediumSlateBlue = 15624315,
|
|
1355
|
+
rgbMediumSpringGreen = 10156544,
|
|
1356
|
+
rgbMediumTurquoise = 13422920,
|
|
1357
|
+
rgbMediumVioletRed = 8721863,
|
|
1358
|
+
rgbMidnightBlue = 7346457,
|
|
1359
|
+
rgbMintCream = 16449525,
|
|
1360
|
+
rgbMistyRose = 14804223,
|
|
1361
|
+
rgbMoccasin = 11920639,
|
|
1362
|
+
rgbNavajoWhite = 11394815,
|
|
1363
|
+
rgbNavy = 8388608,
|
|
1364
|
+
rgbNavyBlue = 8388608,
|
|
1365
|
+
rgbOldLace = 15136253,
|
|
1366
|
+
rgbOlive = 32896,
|
|
1367
|
+
rgbOliveDrab = 2330219,
|
|
1368
|
+
rgbOrange = 42495,
|
|
1369
|
+
rgbOrangeRed = 17919,
|
|
1370
|
+
rgbOrchid = 14053594,
|
|
1371
|
+
rgbPaleGoldenrod = 7071982,
|
|
1372
|
+
rgbPaleGreen = 10025880,
|
|
1373
|
+
rgbPaleTurquoise = 15658671,
|
|
1374
|
+
rgbPaleVioletRed = 9662683,
|
|
1375
|
+
rgbPapayaWhip = 14020607,
|
|
1376
|
+
rgbPeachPuff = 12180223,
|
|
1377
|
+
rgbPeru = 4163021,
|
|
1378
|
+
rgbPink = 13353215,
|
|
1379
|
+
rgbPlum = 14524637,
|
|
1380
|
+
rgbPowderBlue = 15130800,
|
|
1381
|
+
rgbPurple = 8388736,
|
|
1382
|
+
rgbRed = 255,
|
|
1383
|
+
rgbRosyBrown = 9408444,
|
|
1384
|
+
rgbRoyalBlue = 14772545,
|
|
1385
|
+
rgbSalmon = 7504122,
|
|
1386
|
+
rgbSandyBrown = 6333684,
|
|
1387
|
+
rgbSeaGreen = 5737262,
|
|
1388
|
+
rgbSeashell = 15660543,
|
|
1389
|
+
rgbSienna = 2970272,
|
|
1390
|
+
rgbSilver = 12632256,
|
|
1391
|
+
rgbSkyBlue = 15453831,
|
|
1392
|
+
rgbSlateBlue = 13458026,
|
|
1393
|
+
rgbSlateGray = 9470064,
|
|
1394
|
+
rgbSlateGrey = 9470064,
|
|
1395
|
+
rgbSnow = 16448255,
|
|
1396
|
+
rgbSpringGreen = 8388352,
|
|
1397
|
+
rgbSteelBlue = 11829830,
|
|
1398
|
+
rgbTan = 9221330,
|
|
1399
|
+
rgbTeal = 8421376,
|
|
1400
|
+
rgbThistle = 14204888,
|
|
1401
|
+
rgbTomato = 4678655,
|
|
1402
|
+
rgbTurquoise = 13688896,
|
|
1403
|
+
rgbYellow = 65535,
|
|
1404
|
+
rgbYellowGreen = 3329434,
|
|
1405
|
+
rgbViolet = 15631086,
|
|
1406
|
+
rgbWheat = 11788021,
|
|
1407
|
+
rgbWhite = 16777215,
|
|
1408
|
+
rgbWhiteSmoke = 16119285
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1411
|
+
declare enum XlLineStyle {
|
|
1412
|
+
xlContinuous = 1,
|
|
1413
|
+
xlDash = -4115,
|
|
1414
|
+
xlDashDot = 4,
|
|
1415
|
+
xlDashDotDot = 5,
|
|
1416
|
+
xlDot = -4118,
|
|
1417
|
+
xlDouble = -4119,
|
|
1418
|
+
xlSlantDashDot = 13,
|
|
1419
|
+
xlLineStyleNone = -4142
|
|
1420
|
+
}
|
|
1421
|
+
|
|
1422
|
+
declare enum XlOrientation {
|
|
1423
|
+
xlDownward = -4170,
|
|
1424
|
+
xlHorizontal = -4128,
|
|
1425
|
+
xlUpward = -4171,
|
|
1426
|
+
xlVertical = -4166
|
|
1427
|
+
}
|
|
1428
|
+
|
|
1429
|
+
declare enum PpResampleMediaProfile {
|
|
1430
|
+
ppResampleMediaProfileCustom = 1,
|
|
1431
|
+
ppResampleMediaProfileSmall = 2,
|
|
1432
|
+
ppResampleMediaProfileSmaller = 3,
|
|
1433
|
+
ppResampleMediaProfileSmallest = 4
|
|
1434
|
+
}
|
|
1435
|
+
|
|
1436
|
+
declare enum PpMediaTaskStatus {
|
|
1437
|
+
ppMediaTaskStatusNone = 0,
|
|
1438
|
+
ppMediaTaskStatusInProgress = 1,
|
|
1439
|
+
ppMediaTaskStatusQueued = 2,
|
|
1440
|
+
ppMediaTaskStatusDone = 3,
|
|
1441
|
+
ppMediaTaskStatusFailed = 4
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
declare enum PpPlayerState {
|
|
1445
|
+
ppPlaying = 0,
|
|
1446
|
+
ppPaused = 1,
|
|
1447
|
+
ppStopped = 2,
|
|
1448
|
+
ppNotReady = 3
|
|
1449
|
+
}
|
|
1450
|
+
|
|
1451
|
+
declare enum PpProtectedViewCloseReason {
|
|
1452
|
+
ppProtectedViewCloseNormal = 0,
|
|
1453
|
+
ppProtectedViewCloseEdit = 1,
|
|
1454
|
+
ppProtectedViewCloseForced = 2
|
|
1455
|
+
}
|
|
1456
|
+
|
|
1457
|
+
declare enum PpGuideOrientation {
|
|
1458
|
+
ppHorizontalGuide = 1,
|
|
1459
|
+
ppVerticalGuide = 2
|
|
1460
|
+
}
|
|
1461
|
+
|
|
1462
|
+
// 常量声明
|
|
1463
|
+
declare const ppWindowNormal: PpWindowState.ppWindowNormal;
|
|
1464
|
+
declare const ppWindowMinimized: PpWindowState.ppWindowMinimized;
|
|
1465
|
+
declare const ppWindowMaximized: PpWindowState.ppWindowMaximized;
|
|
1466
|
+
declare const ppArrangeTiled: PpArrangeStyle.ppArrangeTiled;
|
|
1467
|
+
declare const ppArrangeCascade: PpArrangeStyle.ppArrangeCascade;
|
|
1468
|
+
declare const ppViewSlide: PpViewType.ppViewSlide;
|
|
1469
|
+
declare const ppViewSlideMaster: PpViewType.ppViewSlideMaster;
|
|
1470
|
+
declare const ppViewNotesPage: PpViewType.ppViewNotesPage;
|
|
1471
|
+
declare const ppViewHandoutMaster: PpViewType.ppViewHandoutMaster;
|
|
1472
|
+
declare const ppViewNotesMaster: PpViewType.ppViewNotesMaster;
|
|
1473
|
+
declare const ppViewOutline: PpViewType.ppViewOutline;
|
|
1474
|
+
declare const ppViewSlideSorter: PpViewType.ppViewSlideSorter;
|
|
1475
|
+
declare const ppViewTitleMaster: PpViewType.ppViewTitleMaster;
|
|
1476
|
+
declare const ppViewNormal: PpViewType.ppViewNormal;
|
|
1477
|
+
declare const ppViewPrintPreview: PpViewType.ppViewPrintPreview;
|
|
1478
|
+
declare const ppViewThumbnails: PpViewType.ppViewThumbnails;
|
|
1479
|
+
declare const ppViewMasterThumbnails: PpViewType.ppViewMasterThumbnails;
|
|
1480
|
+
declare const ppSchemeColorMixed: PpColorSchemeIndex.ppSchemeColorMixed;
|
|
1481
|
+
declare const ppNotSchemeColor: PpColorSchemeIndex.ppNotSchemeColor;
|
|
1482
|
+
declare const ppBackground: PpColorSchemeIndex.ppBackground;
|
|
1483
|
+
declare const ppForeground: PpColorSchemeIndex.ppForeground;
|
|
1484
|
+
declare const ppShadow: PpColorSchemeIndex.ppShadow;
|
|
1485
|
+
declare const ppTitle: PpColorSchemeIndex.ppTitle;
|
|
1486
|
+
declare const ppFill: PpColorSchemeIndex.ppFill;
|
|
1487
|
+
declare const ppAccent1: PpColorSchemeIndex.ppAccent1;
|
|
1488
|
+
declare const ppAccent2: PpColorSchemeIndex.ppAccent2;
|
|
1489
|
+
declare const ppAccent3: PpColorSchemeIndex.ppAccent3;
|
|
1490
|
+
declare const ppSlideSizeOnScreen: PpSlideSizeType.ppSlideSizeOnScreen;
|
|
1491
|
+
declare const ppSlideSizeLetterPaper: PpSlideSizeType.ppSlideSizeLetterPaper;
|
|
1492
|
+
declare const ppSlideSizeA4Paper: PpSlideSizeType.ppSlideSizeA4Paper;
|
|
1493
|
+
declare const ppSlideSize35MM: PpSlideSizeType.ppSlideSize35MM;
|
|
1494
|
+
declare const ppSlideSizeOverhead: PpSlideSizeType.ppSlideSizeOverhead;
|
|
1495
|
+
declare const ppSlideSizeBanner: PpSlideSizeType.ppSlideSizeBanner;
|
|
1496
|
+
declare const ppSlideSizeCustom: PpSlideSizeType.ppSlideSizeCustom;
|
|
1497
|
+
declare const ppSlideSizeLedgerPaper: PpSlideSizeType.ppSlideSizeLedgerPaper;
|
|
1498
|
+
declare const ppSlideSizeA3Paper: PpSlideSizeType.ppSlideSizeA3Paper;
|
|
1499
|
+
declare const ppSlideSizeB4ISOPaper: PpSlideSizeType.ppSlideSizeB4ISOPaper;
|
|
1500
|
+
declare const ppSlideSizeB5ISOPaper: PpSlideSizeType.ppSlideSizeB5ISOPaper;
|
|
1501
|
+
declare const ppSlideSizeB4JISPaper: PpSlideSizeType.ppSlideSizeB4JISPaper;
|
|
1502
|
+
declare const ppSlideSizeB5JISPaper: PpSlideSizeType.ppSlideSizeB5JISPaper;
|
|
1503
|
+
declare const ppSlideSizeHagakiCard: PpSlideSizeType.ppSlideSizeHagakiCard;
|
|
1504
|
+
declare const ppSlideSizeOnScreen16x9: PpSlideSizeType.ppSlideSizeOnScreen16x9;
|
|
1505
|
+
declare const ppSlideSizeOnScreen16x10: PpSlideSizeType.ppSlideSizeOnScreen16x10;
|
|
1506
|
+
declare const ppSaveAsPresentation: PpSaveAsFileType.ppSaveAsPresentation;
|
|
1507
|
+
declare const ppSaveAsPowerPoint7: PpSaveAsFileType.ppSaveAsPowerPoint7;
|
|
1508
|
+
declare const ppSaveAsPowerPoint4: PpSaveAsFileType.ppSaveAsPowerPoint4;
|
|
1509
|
+
declare const ppSaveAsPowerPoint3: PpSaveAsFileType.ppSaveAsPowerPoint3;
|
|
1510
|
+
declare const ppSaveAsTemplate: PpSaveAsFileType.ppSaveAsTemplate;
|
|
1511
|
+
declare const ppSaveAsRTF: PpSaveAsFileType.ppSaveAsRTF;
|
|
1512
|
+
declare const ppSaveAsShow: PpSaveAsFileType.ppSaveAsShow;
|
|
1513
|
+
declare const ppSaveAsAddIn: PpSaveAsFileType.ppSaveAsAddIn;
|
|
1514
|
+
declare const ppSaveAsPowerPoint4FarEast: PpSaveAsFileType.ppSaveAsPowerPoint4FarEast;
|
|
1515
|
+
declare const ppSaveAsDefault: PpSaveAsFileType.ppSaveAsDefault;
|
|
1516
|
+
declare const ppSaveAsHTML: PpSaveAsFileType.ppSaveAsHTML;
|
|
1517
|
+
declare const ppSaveAsHTMLv3: PpSaveAsFileType.ppSaveAsHTMLv3;
|
|
1518
|
+
declare const ppSaveAsHTMLDual: PpSaveAsFileType.ppSaveAsHTMLDual;
|
|
1519
|
+
declare const ppSaveAsMetaFile: PpSaveAsFileType.ppSaveAsMetaFile;
|
|
1520
|
+
declare const ppSaveAsGIF: PpSaveAsFileType.ppSaveAsGIF;
|
|
1521
|
+
declare const ppSaveAsJPG: PpSaveAsFileType.ppSaveAsJPG;
|
|
1522
|
+
declare const ppSaveAsPNG: PpSaveAsFileType.ppSaveAsPNG;
|
|
1523
|
+
declare const ppSaveAsBMP: PpSaveAsFileType.ppSaveAsBMP;
|
|
1524
|
+
declare const ppSaveAsWebArchive: PpSaveAsFileType.ppSaveAsWebArchive;
|
|
1525
|
+
declare const ppSaveAsTIF: PpSaveAsFileType.ppSaveAsTIF;
|
|
1526
|
+
declare const ppSaveAsPresForReview: PpSaveAsFileType.ppSaveAsPresForReview;
|
|
1527
|
+
declare const ppSaveAsEMF: PpSaveAsFileType.ppSaveAsEMF;
|
|
1528
|
+
declare const ppSaveAsOpenXMLPresentation: PpSaveAsFileType.ppSaveAsOpenXMLPresentation;
|
|
1529
|
+
declare const ppSaveAsOpenXMLPresentationMacroEnabled: PpSaveAsFileType.ppSaveAsOpenXMLPresentationMacroEnabled;
|
|
1530
|
+
declare const ppSaveAsOpenXMLTemplate: PpSaveAsFileType.ppSaveAsOpenXMLTemplate;
|
|
1531
|
+
declare const ppSaveAsOpenXMLTemplateMacroEnabled: PpSaveAsFileType.ppSaveAsOpenXMLTemplateMacroEnabled;
|
|
1532
|
+
declare const ppSaveAsOpenXMLShow: PpSaveAsFileType.ppSaveAsOpenXMLShow;
|
|
1533
|
+
declare const ppSaveAsOpenXMLShowMacroEnabled: PpSaveAsFileType.ppSaveAsOpenXMLShowMacroEnabled;
|
|
1534
|
+
declare const ppSaveAsOpenXMLAddin: PpSaveAsFileType.ppSaveAsOpenXMLAddin;
|
|
1535
|
+
declare const ppSaveAsOpenXMLTheme: PpSaveAsFileType.ppSaveAsOpenXMLTheme;
|
|
1536
|
+
declare const ppSaveAsPDF: PpSaveAsFileType.ppSaveAsPDF;
|
|
1537
|
+
declare const ppSaveAsXPS: PpSaveAsFileType.ppSaveAsXPS;
|
|
1538
|
+
declare const ppSaveAsXMLPresentation: PpSaveAsFileType.ppSaveAsXMLPresentation;
|
|
1539
|
+
declare const ppSaveAsOpenDocumentPresentation: PpSaveAsFileType.ppSaveAsOpenDocumentPresentation;
|
|
1540
|
+
declare const ppSaveAsOpenXMLPicturePresentation: PpSaveAsFileType.ppSaveAsOpenXMLPicturePresentation;
|
|
1541
|
+
declare const ppSaveAsWMV: PpSaveAsFileType.ppSaveAsWMV;
|
|
1542
|
+
declare const ppSaveAsStrictOpenXMLPresentation: PpSaveAsFileType.ppSaveAsStrictOpenXMLPresentation;
|
|
1543
|
+
declare const ppSaveAsMP4: PpSaveAsFileType.ppSaveAsMP4;
|
|
1544
|
+
declare const ppSaveAsAnimatedGIF: PpSaveAsFileType.ppSaveAsAnimatedGIF;
|
|
1545
|
+
declare const ppSaveAsExternalConverter: PpSaveAsFileType.ppSaveAsExternalConverter;
|
|
1546
|
+
declare const ppDefaultStyle: PpTextStyleType.ppDefaultStyle;
|
|
1547
|
+
declare const ppTitleStyle: PpTextStyleType.ppTitleStyle;
|
|
1548
|
+
declare const ppBodyStyle: PpTextStyleType.ppBodyStyle;
|
|
1549
|
+
declare const ppLayoutMixed: PpSlideLayout.ppLayoutMixed;
|
|
1550
|
+
declare const ppLayoutTitle: PpSlideLayout.ppLayoutTitle;
|
|
1551
|
+
declare const ppLayoutText: PpSlideLayout.ppLayoutText;
|
|
1552
|
+
declare const ppLayoutTwoColumnText: PpSlideLayout.ppLayoutTwoColumnText;
|
|
1553
|
+
declare const ppLayoutTable: PpSlideLayout.ppLayoutTable;
|
|
1554
|
+
declare const ppLayoutTextAndChart: PpSlideLayout.ppLayoutTextAndChart;
|
|
1555
|
+
declare const ppLayoutChartAndText: PpSlideLayout.ppLayoutChartAndText;
|
|
1556
|
+
declare const ppLayoutOrgchart: PpSlideLayout.ppLayoutOrgchart;
|
|
1557
|
+
declare const ppLayoutChart: PpSlideLayout.ppLayoutChart;
|
|
1558
|
+
declare const ppLayoutTextAndClipart: PpSlideLayout.ppLayoutTextAndClipart;
|
|
1559
|
+
declare const ppLayoutClipartAndText: PpSlideLayout.ppLayoutClipartAndText;
|
|
1560
|
+
declare const ppLayoutTitleOnly: PpSlideLayout.ppLayoutTitleOnly;
|
|
1561
|
+
declare const ppLayoutBlank: PpSlideLayout.ppLayoutBlank;
|
|
1562
|
+
declare const ppLayoutTextAndObject: PpSlideLayout.ppLayoutTextAndObject;
|
|
1563
|
+
declare const ppLayoutObjectAndText: PpSlideLayout.ppLayoutObjectAndText;
|
|
1564
|
+
declare const ppLayoutLargeObject: PpSlideLayout.ppLayoutLargeObject;
|
|
1565
|
+
declare const ppLayoutObject: PpSlideLayout.ppLayoutObject;
|
|
1566
|
+
declare const ppLayoutTextAndMediaClip: PpSlideLayout.ppLayoutTextAndMediaClip;
|
|
1567
|
+
declare const ppLayoutMediaClipAndText: PpSlideLayout.ppLayoutMediaClipAndText;
|
|
1568
|
+
declare const ppLayoutObjectOverText: PpSlideLayout.ppLayoutObjectOverText;
|
|
1569
|
+
declare const ppLayoutTextOverObject: PpSlideLayout.ppLayoutTextOverObject;
|
|
1570
|
+
declare const ppLayoutTextAndTwoObjects: PpSlideLayout.ppLayoutTextAndTwoObjects;
|
|
1571
|
+
declare const ppLayoutTwoObjectsAndText: PpSlideLayout.ppLayoutTwoObjectsAndText;
|
|
1572
|
+
declare const ppLayoutTwoObjectsOverText: PpSlideLayout.ppLayoutTwoObjectsOverText;
|
|
1573
|
+
declare const ppLayoutFourObjects: PpSlideLayout.ppLayoutFourObjects;
|
|
1574
|
+
declare const ppLayoutVerticalText: PpSlideLayout.ppLayoutVerticalText;
|
|
1575
|
+
declare const ppLayoutClipArtAndVerticalText: PpSlideLayout.ppLayoutClipArtAndVerticalText;
|
|
1576
|
+
declare const ppLayoutVerticalTitleAndText: PpSlideLayout.ppLayoutVerticalTitleAndText;
|
|
1577
|
+
declare const ppLayoutVerticalTitleAndTextOverChart: PpSlideLayout.ppLayoutVerticalTitleAndTextOverChart;
|
|
1578
|
+
declare const ppLayoutTwoObjects: PpSlideLayout.ppLayoutTwoObjects;
|
|
1579
|
+
declare const ppLayoutObjectAndTwoObjects: PpSlideLayout.ppLayoutObjectAndTwoObjects;
|
|
1580
|
+
declare const ppLayoutTwoObjectsAndObject: PpSlideLayout.ppLayoutTwoObjectsAndObject;
|
|
1581
|
+
declare const ppLayoutCustom: PpSlideLayout.ppLayoutCustom;
|
|
1582
|
+
declare const ppLayoutSectionHeader: PpSlideLayout.ppLayoutSectionHeader;
|
|
1583
|
+
declare const ppLayoutComparison: PpSlideLayout.ppLayoutComparison;
|
|
1584
|
+
declare const ppLayoutContentWithCaption: PpSlideLayout.ppLayoutContentWithCaption;
|
|
1585
|
+
declare const ppLayoutPictureWithCaption: PpSlideLayout.ppLayoutPictureWithCaption;
|
|
1586
|
+
declare const ppEffectMixed: PpEntryEffect.ppEffectMixed;
|
|
1587
|
+
declare const ppEffectNone: PpEntryEffect.ppEffectNone;
|
|
1588
|
+
declare const ppEffectCut: PpEntryEffect.ppEffectCut;
|
|
1589
|
+
declare const ppEffectCutThroughBlack: PpEntryEffect.ppEffectCutThroughBlack;
|
|
1590
|
+
declare const ppEffectRandom: PpEntryEffect.ppEffectRandom;
|
|
1591
|
+
declare const ppEffectBlindsHorizontal: PpEntryEffect.ppEffectBlindsHorizontal;
|
|
1592
|
+
declare const ppEffectBlindsVertical: PpEntryEffect.ppEffectBlindsVertical;
|
|
1593
|
+
declare const ppEffectCheckerboardAcross: PpEntryEffect.ppEffectCheckerboardAcross;
|
|
1594
|
+
declare const ppEffectCheckerboardDown: PpEntryEffect.ppEffectCheckerboardDown;
|
|
1595
|
+
declare const ppEffectCoverLeft: PpEntryEffect.ppEffectCoverLeft;
|
|
1596
|
+
declare const ppEffectCoverUp: PpEntryEffect.ppEffectCoverUp;
|
|
1597
|
+
declare const ppEffectCoverRight: PpEntryEffect.ppEffectCoverRight;
|
|
1598
|
+
declare const ppEffectCoverDown: PpEntryEffect.ppEffectCoverDown;
|
|
1599
|
+
declare const ppEffectCoverLeftUp: PpEntryEffect.ppEffectCoverLeftUp;
|
|
1600
|
+
declare const ppEffectCoverRightUp: PpEntryEffect.ppEffectCoverRightUp;
|
|
1601
|
+
declare const ppEffectCoverLeftDown: PpEntryEffect.ppEffectCoverLeftDown;
|
|
1602
|
+
declare const ppEffectCoverRightDown: PpEntryEffect.ppEffectCoverRightDown;
|
|
1603
|
+
declare const ppEffectDissolve: PpEntryEffect.ppEffectDissolve;
|
|
1604
|
+
declare const ppEffectFade: PpEntryEffect.ppEffectFade;
|
|
1605
|
+
declare const ppEffectUncoverLeft: PpEntryEffect.ppEffectUncoverLeft;
|
|
1606
|
+
declare const ppEffectUncoverUp: PpEntryEffect.ppEffectUncoverUp;
|
|
1607
|
+
declare const ppEffectUncoverRight: PpEntryEffect.ppEffectUncoverRight;
|
|
1608
|
+
declare const ppEffectUncoverDown: PpEntryEffect.ppEffectUncoverDown;
|
|
1609
|
+
declare const ppEffectUncoverLeftUp: PpEntryEffect.ppEffectUncoverLeftUp;
|
|
1610
|
+
declare const ppEffectUncoverRightUp: PpEntryEffect.ppEffectUncoverRightUp;
|
|
1611
|
+
declare const ppEffectUncoverLeftDown: PpEntryEffect.ppEffectUncoverLeftDown;
|
|
1612
|
+
declare const ppEffectUncoverRightDown: PpEntryEffect.ppEffectUncoverRightDown;
|
|
1613
|
+
declare const ppEffectRandomBarsHorizontal: PpEntryEffect.ppEffectRandomBarsHorizontal;
|
|
1614
|
+
declare const ppEffectRandomBarsVertical: PpEntryEffect.ppEffectRandomBarsVertical;
|
|
1615
|
+
declare const ppEffectStripsUpLeft: PpEntryEffect.ppEffectStripsUpLeft;
|
|
1616
|
+
declare const ppEffectStripsUpRight: PpEntryEffect.ppEffectStripsUpRight;
|
|
1617
|
+
declare const ppEffectStripsDownLeft: PpEntryEffect.ppEffectStripsDownLeft;
|
|
1618
|
+
declare const ppEffectStripsDownRight: PpEntryEffect.ppEffectStripsDownRight;
|
|
1619
|
+
declare const ppEffectStripsLeftUp: PpEntryEffect.ppEffectStripsLeftUp;
|
|
1620
|
+
declare const ppEffectStripsRightUp: PpEntryEffect.ppEffectStripsRightUp;
|
|
1621
|
+
declare const ppEffectStripsLeftDown: PpEntryEffect.ppEffectStripsLeftDown;
|
|
1622
|
+
declare const ppEffectStripsRightDown: PpEntryEffect.ppEffectStripsRightDown;
|
|
1623
|
+
declare const ppEffectWipeLeft: PpEntryEffect.ppEffectWipeLeft;
|
|
1624
|
+
declare const ppEffectWipeUp: PpEntryEffect.ppEffectWipeUp;
|
|
1625
|
+
declare const ppEffectWipeRight: PpEntryEffect.ppEffectWipeRight;
|
|
1626
|
+
declare const ppEffectWipeDown: PpEntryEffect.ppEffectWipeDown;
|
|
1627
|
+
declare const ppEffectBoxOut: PpEntryEffect.ppEffectBoxOut;
|
|
1628
|
+
declare const ppEffectBoxIn: PpEntryEffect.ppEffectBoxIn;
|
|
1629
|
+
declare const ppEffectFlyFromLeft: PpEntryEffect.ppEffectFlyFromLeft;
|
|
1630
|
+
declare const ppEffectFlyFromTop: PpEntryEffect.ppEffectFlyFromTop;
|
|
1631
|
+
declare const ppEffectFlyFromRight: PpEntryEffect.ppEffectFlyFromRight;
|
|
1632
|
+
declare const ppEffectFlyFromBottom: PpEntryEffect.ppEffectFlyFromBottom;
|
|
1633
|
+
declare const ppEffectFlyFromTopLeft: PpEntryEffect.ppEffectFlyFromTopLeft;
|
|
1634
|
+
declare const ppEffectFlyFromTopRight: PpEntryEffect.ppEffectFlyFromTopRight;
|
|
1635
|
+
declare const ppEffectFlyFromBottomLeft: PpEntryEffect.ppEffectFlyFromBottomLeft;
|
|
1636
|
+
declare const ppEffectFlyFromBottomRight: PpEntryEffect.ppEffectFlyFromBottomRight;
|
|
1637
|
+
declare const ppEffectPeekFromLeft: PpEntryEffect.ppEffectPeekFromLeft;
|
|
1638
|
+
declare const ppEffectPeekFromDown: PpEntryEffect.ppEffectPeekFromDown;
|
|
1639
|
+
declare const ppEffectPeekFromRight: PpEntryEffect.ppEffectPeekFromRight;
|
|
1640
|
+
declare const ppEffectPeekFromUp: PpEntryEffect.ppEffectPeekFromUp;
|
|
1641
|
+
declare const ppEffectCrawlFromLeft: PpEntryEffect.ppEffectCrawlFromLeft;
|
|
1642
|
+
declare const ppEffectCrawlFromUp: PpEntryEffect.ppEffectCrawlFromUp;
|
|
1643
|
+
declare const ppEffectCrawlFromRight: PpEntryEffect.ppEffectCrawlFromRight;
|
|
1644
|
+
declare const ppEffectCrawlFromDown: PpEntryEffect.ppEffectCrawlFromDown;
|
|
1645
|
+
declare const ppEffectZoomIn: PpEntryEffect.ppEffectZoomIn;
|
|
1646
|
+
declare const ppEffectZoomInSlightly: PpEntryEffect.ppEffectZoomInSlightly;
|
|
1647
|
+
declare const ppEffectZoomOut: PpEntryEffect.ppEffectZoomOut;
|
|
1648
|
+
declare const ppEffectZoomOutSlightly: PpEntryEffect.ppEffectZoomOutSlightly;
|
|
1649
|
+
declare const ppEffectZoomCenter: PpEntryEffect.ppEffectZoomCenter;
|
|
1650
|
+
declare const ppEffectZoomBottom: PpEntryEffect.ppEffectZoomBottom;
|
|
1651
|
+
declare const ppEffectStretchAcross: PpEntryEffect.ppEffectStretchAcross;
|
|
1652
|
+
declare const ppEffectStretchLeft: PpEntryEffect.ppEffectStretchLeft;
|
|
1653
|
+
declare const ppEffectStretchUp: PpEntryEffect.ppEffectStretchUp;
|
|
1654
|
+
declare const ppEffectStretchRight: PpEntryEffect.ppEffectStretchRight;
|
|
1655
|
+
declare const ppEffectStretchDown: PpEntryEffect.ppEffectStretchDown;
|
|
1656
|
+
declare const ppEffectSwivel: PpEntryEffect.ppEffectSwivel;
|
|
1657
|
+
declare const ppEffectSpiral: PpEntryEffect.ppEffectSpiral;
|
|
1658
|
+
declare const ppEffectSplitHorizontalOut: PpEntryEffect.ppEffectSplitHorizontalOut;
|
|
1659
|
+
declare const ppEffectSplitHorizontalIn: PpEntryEffect.ppEffectSplitHorizontalIn;
|
|
1660
|
+
declare const ppEffectSplitVerticalOut: PpEntryEffect.ppEffectSplitVerticalOut;
|
|
1661
|
+
declare const ppEffectSplitVerticalIn: PpEntryEffect.ppEffectSplitVerticalIn;
|
|
1662
|
+
declare const ppEffectFlashOnceFast: PpEntryEffect.ppEffectFlashOnceFast;
|
|
1663
|
+
declare const ppEffectFlashOnceMedium: PpEntryEffect.ppEffectFlashOnceMedium;
|
|
1664
|
+
declare const ppEffectFlashOnceSlow: PpEntryEffect.ppEffectFlashOnceSlow;
|
|
1665
|
+
declare const ppEffectAppear: PpEntryEffect.ppEffectAppear;
|
|
1666
|
+
declare const ppEffectCircleOut: PpEntryEffect.ppEffectCircleOut;
|
|
1667
|
+
declare const ppEffectDiamondOut: PpEntryEffect.ppEffectDiamondOut;
|
|
1668
|
+
declare const ppEffectCombHorizontal: PpEntryEffect.ppEffectCombHorizontal;
|
|
1669
|
+
declare const ppEffectCombVertical: PpEntryEffect.ppEffectCombVertical;
|
|
1670
|
+
declare const ppEffectFadeSmoothly: PpEntryEffect.ppEffectFadeSmoothly;
|
|
1671
|
+
declare const ppEffectNewsflash: PpEntryEffect.ppEffectNewsflash;
|
|
1672
|
+
declare const ppEffectPlusOut: PpEntryEffect.ppEffectPlusOut;
|
|
1673
|
+
declare const ppEffectPushDown: PpEntryEffect.ppEffectPushDown;
|
|
1674
|
+
declare const ppEffectPushLeft: PpEntryEffect.ppEffectPushLeft;
|
|
1675
|
+
declare const ppEffectPushRight: PpEntryEffect.ppEffectPushRight;
|
|
1676
|
+
declare const ppEffectPushUp: PpEntryEffect.ppEffectPushUp;
|
|
1677
|
+
declare const ppEffectWedge: PpEntryEffect.ppEffectWedge;
|
|
1678
|
+
declare const ppEffectWheel1Spoke: PpEntryEffect.ppEffectWheel1Spoke;
|
|
1679
|
+
declare const ppEffectWheel2Spokes: PpEntryEffect.ppEffectWheel2Spokes;
|
|
1680
|
+
declare const ppEffectWheel3Spokes: PpEntryEffect.ppEffectWheel3Spokes;
|
|
1681
|
+
declare const ppEffectWheel4Spokes: PpEntryEffect.ppEffectWheel4Spokes;
|
|
1682
|
+
declare const ppEffectWheel8Spokes: PpEntryEffect.ppEffectWheel8Spokes;
|
|
1683
|
+
declare const ppEffectWheelReverse1Spoke: PpEntryEffect.ppEffectWheelReverse1Spoke;
|
|
1684
|
+
declare const ppEffectVortexLeft: PpEntryEffect.ppEffectVortexLeft;
|
|
1685
|
+
declare const ppEffectVortexUp: PpEntryEffect.ppEffectVortexUp;
|
|
1686
|
+
declare const ppEffectVortexRight: PpEntryEffect.ppEffectVortexRight;
|
|
1687
|
+
declare const ppEffectVortexDown: PpEntryEffect.ppEffectVortexDown;
|
|
1688
|
+
declare const ppEffectRippleCenter: PpEntryEffect.ppEffectRippleCenter;
|
|
1689
|
+
declare const ppEffectRippleRightUp: PpEntryEffect.ppEffectRippleRightUp;
|
|
1690
|
+
declare const ppEffectRippleLeftUp: PpEntryEffect.ppEffectRippleLeftUp;
|
|
1691
|
+
declare const ppEffectRippleLeftDown: PpEntryEffect.ppEffectRippleLeftDown;
|
|
1692
|
+
declare const ppEffectRippleRightDown: PpEntryEffect.ppEffectRippleRightDown;
|
|
1693
|
+
declare const ppEffectGlitterDiamondLeft: PpEntryEffect.ppEffectGlitterDiamondLeft;
|
|
1694
|
+
declare const ppEffectGlitterDiamondUp: PpEntryEffect.ppEffectGlitterDiamondUp;
|
|
1695
|
+
declare const ppEffectGlitterDiamondRight: PpEntryEffect.ppEffectGlitterDiamondRight;
|
|
1696
|
+
declare const ppEffectGlitterDiamondDown: PpEntryEffect.ppEffectGlitterDiamondDown;
|
|
1697
|
+
declare const ppEffectGlitterHexagonLeft: PpEntryEffect.ppEffectGlitterHexagonLeft;
|
|
1698
|
+
declare const ppEffectGlitterHexagonUp: PpEntryEffect.ppEffectGlitterHexagonUp;
|
|
1699
|
+
declare const ppEffectGlitterHexagonRight: PpEntryEffect.ppEffectGlitterHexagonRight;
|
|
1700
|
+
declare const ppEffectGlitterHexagonDown: PpEntryEffect.ppEffectGlitterHexagonDown;
|
|
1701
|
+
declare const ppEffectGalleryLeft: PpEntryEffect.ppEffectGalleryLeft;
|
|
1702
|
+
declare const ppEffectGalleryRight: PpEntryEffect.ppEffectGalleryRight;
|
|
1703
|
+
declare const ppEffectConveyorLeft: PpEntryEffect.ppEffectConveyorLeft;
|
|
1704
|
+
declare const ppEffectConveyorRight: PpEntryEffect.ppEffectConveyorRight;
|
|
1705
|
+
declare const ppEffectDoorsVertical: PpEntryEffect.ppEffectDoorsVertical;
|
|
1706
|
+
declare const ppEffectDoorsHorizontal: PpEntryEffect.ppEffectDoorsHorizontal;
|
|
1707
|
+
declare const ppEffectWindowVertical: PpEntryEffect.ppEffectWindowVertical;
|
|
1708
|
+
declare const ppEffectWindowHorizontal: PpEntryEffect.ppEffectWindowHorizontal;
|
|
1709
|
+
declare const ppEffectWarpIn: PpEntryEffect.ppEffectWarpIn;
|
|
1710
|
+
declare const ppEffectWarpOut: PpEntryEffect.ppEffectWarpOut;
|
|
1711
|
+
declare const ppEffectFlyThroughIn: PpEntryEffect.ppEffectFlyThroughIn;
|
|
1712
|
+
declare const ppEffectFlyThroughOut: PpEntryEffect.ppEffectFlyThroughOut;
|
|
1713
|
+
declare const ppEffectFlyThroughInBounce: PpEntryEffect.ppEffectFlyThroughInBounce;
|
|
1714
|
+
declare const ppEffectFlyThroughOutBounce: PpEntryEffect.ppEffectFlyThroughOutBounce;
|
|
1715
|
+
declare const ppEffectRevealSmoothLeft: PpEntryEffect.ppEffectRevealSmoothLeft;
|
|
1716
|
+
declare const ppEffectRevealSmoothRight: PpEntryEffect.ppEffectRevealSmoothRight;
|
|
1717
|
+
declare const ppEffectRevealBlackLeft: PpEntryEffect.ppEffectRevealBlackLeft;
|
|
1718
|
+
declare const ppEffectRevealBlackRight: PpEntryEffect.ppEffectRevealBlackRight;
|
|
1719
|
+
declare const ppEffectHoneycomb: PpEntryEffect.ppEffectHoneycomb;
|
|
1720
|
+
declare const ppEffectFerrisWheelLeft: PpEntryEffect.ppEffectFerrisWheelLeft;
|
|
1721
|
+
declare const ppEffectFerrisWheelRight: PpEntryEffect.ppEffectFerrisWheelRight;
|
|
1722
|
+
declare const ppEffectSwitchLeft: PpEntryEffect.ppEffectSwitchLeft;
|
|
1723
|
+
declare const ppEffectSwitchUp: PpEntryEffect.ppEffectSwitchUp;
|
|
1724
|
+
declare const ppEffectSwitchRight: PpEntryEffect.ppEffectSwitchRight;
|
|
1725
|
+
declare const ppEffectSwitchDown: PpEntryEffect.ppEffectSwitchDown;
|
|
1726
|
+
declare const ppEffectFlipLeft: PpEntryEffect.ppEffectFlipLeft;
|
|
1727
|
+
declare const ppEffectFlipUp: PpEntryEffect.ppEffectFlipUp;
|
|
1728
|
+
declare const ppEffectFlipRight: PpEntryEffect.ppEffectFlipRight;
|
|
1729
|
+
declare const ppEffectFlipDown: PpEntryEffect.ppEffectFlipDown;
|
|
1730
|
+
declare const ppEffectFlashbulb: PpEntryEffect.ppEffectFlashbulb;
|
|
1731
|
+
declare const ppEffectShredStripsIn: PpEntryEffect.ppEffectShredStripsIn;
|
|
1732
|
+
declare const ppEffectShredStripsOut: PpEntryEffect.ppEffectShredStripsOut;
|
|
1733
|
+
declare const ppEffectShredRectangleIn: PpEntryEffect.ppEffectShredRectangleIn;
|
|
1734
|
+
declare const ppEffectShredRectangleOut: PpEntryEffect.ppEffectShredRectangleOut;
|
|
1735
|
+
declare const ppEffectCubeLeft: PpEntryEffect.ppEffectCubeLeft;
|
|
1736
|
+
declare const ppEffectCubeUp: PpEntryEffect.ppEffectCubeUp;
|
|
1737
|
+
declare const ppEffectCubeRight: PpEntryEffect.ppEffectCubeRight;
|
|
1738
|
+
declare const ppEffectCubeDown: PpEntryEffect.ppEffectCubeDown;
|
|
1739
|
+
declare const ppEffectRotateLeft: PpEntryEffect.ppEffectRotateLeft;
|
|
1740
|
+
declare const ppEffectRotateUp: PpEntryEffect.ppEffectRotateUp;
|
|
1741
|
+
declare const ppEffectRotateRight: PpEntryEffect.ppEffectRotateRight;
|
|
1742
|
+
declare const ppEffectRotateDown: PpEntryEffect.ppEffectRotateDown;
|
|
1743
|
+
declare const ppEffectBoxLeft: PpEntryEffect.ppEffectBoxLeft;
|
|
1744
|
+
declare const ppEffectBoxUp: PpEntryEffect.ppEffectBoxUp;
|
|
1745
|
+
declare const ppEffectBoxRight: PpEntryEffect.ppEffectBoxRight;
|
|
1746
|
+
declare const ppEffectBoxDown: PpEntryEffect.ppEffectBoxDown;
|
|
1747
|
+
declare const ppEffectOrbitLeft: PpEntryEffect.ppEffectOrbitLeft;
|
|
1748
|
+
declare const ppEffectOrbitUp: PpEntryEffect.ppEffectOrbitUp;
|
|
1749
|
+
declare const ppEffectOrbitRight: PpEntryEffect.ppEffectOrbitRight;
|
|
1750
|
+
declare const ppEffectOrbitDown: PpEntryEffect.ppEffectOrbitDown;
|
|
1751
|
+
declare const ppEffectPanLeft: PpEntryEffect.ppEffectPanLeft;
|
|
1752
|
+
declare const ppEffectPanUp: PpEntryEffect.ppEffectPanUp;
|
|
1753
|
+
declare const ppEffectPanRight: PpEntryEffect.ppEffectPanRight;
|
|
1754
|
+
declare const ppEffectPanDown: PpEntryEffect.ppEffectPanDown;
|
|
1755
|
+
declare const ppEffectFallOverLeft: PpEntryEffect.ppEffectFallOverLeft;
|
|
1756
|
+
declare const ppEffectFallOverRight: PpEntryEffect.ppEffectFallOverRight;
|
|
1757
|
+
declare const ppEffectDrapeLeft: PpEntryEffect.ppEffectDrapeLeft;
|
|
1758
|
+
declare const ppEffectDrapeRight: PpEntryEffect.ppEffectDrapeRight;
|
|
1759
|
+
declare const ppEffectCurtains: PpEntryEffect.ppEffectCurtains;
|
|
1760
|
+
declare const ppEffectWindLeft: PpEntryEffect.ppEffectWindLeft;
|
|
1761
|
+
declare const ppEffectWindRight: PpEntryEffect.ppEffectWindRight;
|
|
1762
|
+
declare const ppEffectPrestige: PpEntryEffect.ppEffectPrestige;
|
|
1763
|
+
declare const ppEffectFracture: PpEntryEffect.ppEffectFracture;
|
|
1764
|
+
declare const ppEffectCrush: PpEntryEffect.ppEffectCrush;
|
|
1765
|
+
declare const ppEffectPeelOffLeft: PpEntryEffect.ppEffectPeelOffLeft;
|
|
1766
|
+
declare const ppEffectPeelOffRight: PpEntryEffect.ppEffectPeelOffRight;
|
|
1767
|
+
declare const ppEffectPageCurlSingleLeft: PpEntryEffect.ppEffectPageCurlSingleLeft;
|
|
1768
|
+
declare const ppEffectPageCurlSingleRight: PpEntryEffect.ppEffectPageCurlSingleRight;
|
|
1769
|
+
declare const ppEffectPageCurlDoubleLeft: PpEntryEffect.ppEffectPageCurlDoubleLeft;
|
|
1770
|
+
declare const ppEffectPageCurlDoubleRight: PpEntryEffect.ppEffectPageCurlDoubleRight;
|
|
1771
|
+
declare const ppEffectAirplaneLeft: PpEntryEffect.ppEffectAirplaneLeft;
|
|
1772
|
+
declare const ppEffectAirplaneRight: PpEntryEffect.ppEffectAirplaneRight;
|
|
1773
|
+
declare const ppEffectOrigamiLeft: PpEntryEffect.ppEffectOrigamiLeft;
|
|
1774
|
+
declare const ppEffectOrigamiRight: PpEntryEffect.ppEffectOrigamiRight;
|
|
1775
|
+
declare const ppEffectMorphByObject: PpEntryEffect.ppEffectMorphByObject;
|
|
1776
|
+
declare const ppEffectMorphByWord: PpEntryEffect.ppEffectMorphByWord;
|
|
1777
|
+
declare const ppEffectMorphByChar: PpEntryEffect.ppEffectMorphByChar;
|
|
1778
|
+
declare const ppAnimateLevelMixed: PpTextLevelEffect.ppAnimateLevelMixed;
|
|
1779
|
+
declare const ppAnimateLevelNone: PpTextLevelEffect.ppAnimateLevelNone;
|
|
1780
|
+
declare const ppAnimateByFirstLevel: PpTextLevelEffect.ppAnimateByFirstLevel;
|
|
1781
|
+
declare const ppAnimateBySecondLevel: PpTextLevelEffect.ppAnimateBySecondLevel;
|
|
1782
|
+
declare const ppAnimateByThirdLevel: PpTextLevelEffect.ppAnimateByThirdLevel;
|
|
1783
|
+
declare const ppAnimateByFourthLevel: PpTextLevelEffect.ppAnimateByFourthLevel;
|
|
1784
|
+
declare const ppAnimateByFifthLevel: PpTextLevelEffect.ppAnimateByFifthLevel;
|
|
1785
|
+
declare const ppAnimateByAllLevels: PpTextLevelEffect.ppAnimateByAllLevels;
|
|
1786
|
+
declare const ppAnimateUnitMixed: PpTextUnitEffect.ppAnimateUnitMixed;
|
|
1787
|
+
declare const ppAnimateByParagraph: PpTextUnitEffect.ppAnimateByParagraph;
|
|
1788
|
+
declare const ppAnimateByWord: PpTextUnitEffect.ppAnimateByWord;
|
|
1789
|
+
declare const ppAnimateByCharacter: PpTextUnitEffect.ppAnimateByCharacter;
|
|
1790
|
+
declare const ppAnimateChartMixed: PpChartUnitEffect.ppAnimateChartMixed;
|
|
1791
|
+
declare const ppAnimateBySeries: PpChartUnitEffect.ppAnimateBySeries;
|
|
1792
|
+
declare const ppAnimateByCategory: PpChartUnitEffect.ppAnimateByCategory;
|
|
1793
|
+
declare const ppAnimateBySeriesElements: PpChartUnitEffect.ppAnimateBySeriesElements;
|
|
1794
|
+
declare const ppAnimateByCategoryElements: PpChartUnitEffect.ppAnimateByCategoryElements;
|
|
1795
|
+
declare const ppAnimateChartAllAtOnce: PpChartUnitEffect.ppAnimateChartAllAtOnce;
|
|
1796
|
+
declare const ppAfterEffectMixed: PpAfterEffect.ppAfterEffectMixed;
|
|
1797
|
+
declare const ppAfterEffectNothing: PpAfterEffect.ppAfterEffectNothing;
|
|
1798
|
+
declare const ppAfterEffectHide: PpAfterEffect.ppAfterEffectHide;
|
|
1799
|
+
declare const ppAfterEffectDim: PpAfterEffect.ppAfterEffectDim;
|
|
1800
|
+
declare const ppAfterEffectHideOnClick: PpAfterEffect.ppAfterEffectHideOnClick;
|
|
1801
|
+
declare const ppAdvanceModeMixed: PpAdvanceMode.ppAdvanceModeMixed;
|
|
1802
|
+
declare const ppAdvanceOnClick: PpAdvanceMode.ppAdvanceOnClick;
|
|
1803
|
+
declare const ppAdvanceOnTime: PpAdvanceMode.ppAdvanceOnTime;
|
|
1804
|
+
declare const ppSoundEffectsMixed: PpSoundEffectType.ppSoundEffectsMixed;
|
|
1805
|
+
declare const ppSoundNone: PpSoundEffectType.ppSoundNone;
|
|
1806
|
+
declare const ppSoundStopPrevious: PpSoundEffectType.ppSoundStopPrevious;
|
|
1807
|
+
declare const ppSoundFile: PpSoundEffectType.ppSoundFile;
|
|
1808
|
+
declare const ppFollowColorsMixed: PpFollowColors.ppFollowColorsMixed;
|
|
1809
|
+
declare const ppFollowColorsNone: PpFollowColors.ppFollowColorsNone;
|
|
1810
|
+
declare const ppFollowColorsScheme: PpFollowColors.ppFollowColorsScheme;
|
|
1811
|
+
declare const ppFollowColorsTextAndBackground: PpFollowColors.ppFollowColorsTextAndBackground;
|
|
1812
|
+
declare const ppUpdateOptionMixed: PpUpdateOption.ppUpdateOptionMixed;
|
|
1813
|
+
declare const ppUpdateOptionManual: PpUpdateOption.ppUpdateOptionManual;
|
|
1814
|
+
declare const ppUpdateOptionAutomatic: PpUpdateOption.ppUpdateOptionAutomatic;
|
|
1815
|
+
declare const ppAlignmentMixed: PpParagraphAlignment.ppAlignmentMixed;
|
|
1816
|
+
declare const ppAlignLeft: PpParagraphAlignment.ppAlignLeft;
|
|
1817
|
+
declare const ppAlignCenter: PpParagraphAlignment.ppAlignCenter;
|
|
1818
|
+
declare const ppAlignRight: PpParagraphAlignment.ppAlignRight;
|
|
1819
|
+
declare const ppAlignJustify: PpParagraphAlignment.ppAlignJustify;
|
|
1820
|
+
declare const ppAlignDistribute: PpParagraphAlignment.ppAlignDistribute;
|
|
1821
|
+
declare const ppAlignThaiDistribute: PpParagraphAlignment.ppAlignThaiDistribute;
|
|
1822
|
+
declare const ppAlignJustifyLow: PpParagraphAlignment.ppAlignJustifyLow;
|
|
1823
|
+
declare const ppBaselineAlignMixed: PpBaselineAlignment.ppBaselineAlignMixed;
|
|
1824
|
+
declare const ppBaselineAlignBaseline: PpBaselineAlignment.ppBaselineAlignBaseline;
|
|
1825
|
+
declare const ppBaselineAlignTop: PpBaselineAlignment.ppBaselineAlignTop;
|
|
1826
|
+
declare const ppBaselineAlignCenter: PpBaselineAlignment.ppBaselineAlignCenter;
|
|
1827
|
+
declare const ppBaselineAlignFarEast50: PpBaselineAlignment.ppBaselineAlignFarEast50;
|
|
1828
|
+
declare const ppBaselineAlignAuto: PpBaselineAlignment.ppBaselineAlignAuto;
|
|
1829
|
+
declare const ppTabStopMixed: PpTabStopType.ppTabStopMixed;
|
|
1830
|
+
declare const ppTabStopLeft: PpTabStopType.ppTabStopLeft;
|
|
1831
|
+
declare const ppTabStopCenter: PpTabStopType.ppTabStopCenter;
|
|
1832
|
+
declare const ppTabStopRight: PpTabStopType.ppTabStopRight;
|
|
1833
|
+
declare const ppTabStopDecimal: PpTabStopType.ppTabStopDecimal;
|
|
1834
|
+
declare const ppIndentControlMixed: PpIndentControl.ppIndentControlMixed;
|
|
1835
|
+
declare const ppIndentReplaceAttr: PpIndentControl.ppIndentReplaceAttr;
|
|
1836
|
+
declare const ppIndentKeepAttr: PpIndentControl.ppIndentKeepAttr;
|
|
1837
|
+
declare const ppCaseSentence: PpChangeCase.ppCaseSentence;
|
|
1838
|
+
declare const ppCaseLower: PpChangeCase.ppCaseLower;
|
|
1839
|
+
declare const ppCaseUpper: PpChangeCase.ppCaseUpper;
|
|
1840
|
+
declare const ppCaseTitle: PpChangeCase.ppCaseTitle;
|
|
1841
|
+
declare const ppCaseToggle: PpChangeCase.ppCaseToggle;
|
|
1842
|
+
declare const ppSlideShowPointerNone: PpSlideShowPointerType.ppSlideShowPointerNone;
|
|
1843
|
+
declare const ppSlideShowPointerArrow: PpSlideShowPointerType.ppSlideShowPointerArrow;
|
|
1844
|
+
declare const ppSlideShowPointerPen: PpSlideShowPointerType.ppSlideShowPointerPen;
|
|
1845
|
+
declare const ppSlideShowPointerAlwaysHidden: PpSlideShowPointerType.ppSlideShowPointerAlwaysHidden;
|
|
1846
|
+
declare const ppSlideShowPointerAutoArrow: PpSlideShowPointerType.ppSlideShowPointerAutoArrow;
|
|
1847
|
+
declare const ppSlideShowPointerEraser: PpSlideShowPointerType.ppSlideShowPointerEraser;
|
|
1848
|
+
declare const ppSlideShowRunning: PpSlideShowState.ppSlideShowRunning;
|
|
1849
|
+
declare const ppSlideShowPaused: PpSlideShowState.ppSlideShowPaused;
|
|
1850
|
+
declare const ppSlideShowBlackScreen: PpSlideShowState.ppSlideShowBlackScreen;
|
|
1851
|
+
declare const ppSlideShowWhiteScreen: PpSlideShowState.ppSlideShowWhiteScreen;
|
|
1852
|
+
declare const ppSlideShowDone: PpSlideShowState.ppSlideShowDone;
|
|
1853
|
+
declare const ppSlideShowManualAdvance: PpSlideShowAdvanceMode.ppSlideShowManualAdvance;
|
|
1854
|
+
declare const ppSlideShowUseSlideTimings: PpSlideShowAdvanceMode.ppSlideShowUseSlideTimings;
|
|
1855
|
+
declare const ppSlideShowRehearseNewTimings: PpSlideShowAdvanceMode.ppSlideShowRehearseNewTimings;
|
|
1856
|
+
declare const ppFileDialogOpen: PpFileDialogType.ppFileDialogOpen;
|
|
1857
|
+
declare const ppFileDialogSave: PpFileDialogType.ppFileDialogSave;
|
|
1858
|
+
declare const ppPrintOutputSlides: PpPrintOutputType.ppPrintOutputSlides;
|
|
1859
|
+
declare const ppPrintOutputTwoSlideHandouts: PpPrintOutputType.ppPrintOutputTwoSlideHandouts;
|
|
1860
|
+
declare const ppPrintOutputThreeSlideHandouts: PpPrintOutputType.ppPrintOutputThreeSlideHandouts;
|
|
1861
|
+
declare const ppPrintOutputSixSlideHandouts: PpPrintOutputType.ppPrintOutputSixSlideHandouts;
|
|
1862
|
+
declare const ppPrintOutputNotesPages: PpPrintOutputType.ppPrintOutputNotesPages;
|
|
1863
|
+
declare const ppPrintOutputOutline: PpPrintOutputType.ppPrintOutputOutline;
|
|
1864
|
+
declare const ppPrintOutputBuildSlides: PpPrintOutputType.ppPrintOutputBuildSlides;
|
|
1865
|
+
declare const ppPrintOutputFourSlideHandouts: PpPrintOutputType.ppPrintOutputFourSlideHandouts;
|
|
1866
|
+
declare const ppPrintOutputNineSlideHandouts: PpPrintOutputType.ppPrintOutputNineSlideHandouts;
|
|
1867
|
+
declare const ppPrintOutputOneSlideHandouts: PpPrintOutputType.ppPrintOutputOneSlideHandouts;
|
|
1868
|
+
declare const ppPrintHandoutVerticalFirst: PpPrintHandoutOrder.ppPrintHandoutVerticalFirst;
|
|
1869
|
+
declare const ppPrintHandoutHorizontalFirst: PpPrintHandoutOrder.ppPrintHandoutHorizontalFirst;
|
|
1870
|
+
declare const ppPrintColor: PpPrintColorType.ppPrintColor;
|
|
1871
|
+
declare const ppPrintBlackAndWhite: PpPrintColorType.ppPrintBlackAndWhite;
|
|
1872
|
+
declare const ppPrintPureBlackAndWhite: PpPrintColorType.ppPrintPureBlackAndWhite;
|
|
1873
|
+
declare const ppSelectionNone: PpSelectionType.ppSelectionNone;
|
|
1874
|
+
declare const ppSelectionSlides: PpSelectionType.ppSelectionSlides;
|
|
1875
|
+
declare const ppSelectionShapes: PpSelectionType.ppSelectionShapes;
|
|
1876
|
+
declare const ppSelectionText: PpSelectionType.ppSelectionText;
|
|
1877
|
+
declare const ppDirectionMixed: PpDirection.ppDirectionMixed;
|
|
1878
|
+
declare const ppDirectionLeftToRight: PpDirection.ppDirectionLeftToRight;
|
|
1879
|
+
declare const ppDirectionRightToLeft: PpDirection.ppDirectionRightToLeft;
|
|
1880
|
+
declare const ppDateTimeFormatMixed: PpDateTimeFormat.ppDateTimeFormatMixed;
|
|
1881
|
+
declare const ppDateTimeMdyy: PpDateTimeFormat.ppDateTimeMdyy;
|
|
1882
|
+
declare const ppDateTimeddddMMMMddyyyy: PpDateTimeFormat.ppDateTimeddddMMMMddyyyy;
|
|
1883
|
+
declare const ppDateTimedMMMMyyyy: PpDateTimeFormat.ppDateTimedMMMMyyyy;
|
|
1884
|
+
declare const ppDateTimeMMMMdyyyy: PpDateTimeFormat.ppDateTimeMMMMdyyyy;
|
|
1885
|
+
declare const ppDateTimedMMMyy: PpDateTimeFormat.ppDateTimedMMMyy;
|
|
1886
|
+
declare const ppDateTimeMMMMyy: PpDateTimeFormat.ppDateTimeMMMMyy;
|
|
1887
|
+
declare const ppDateTimeMMyy: PpDateTimeFormat.ppDateTimeMMyy;
|
|
1888
|
+
declare const ppDateTimeMMddyyHmm: PpDateTimeFormat.ppDateTimeMMddyyHmm;
|
|
1889
|
+
declare const ppDateTimeMMddyyhmmAMPM: PpDateTimeFormat.ppDateTimeMMddyyhmmAMPM;
|
|
1890
|
+
declare const ppDateTimeHmm: PpDateTimeFormat.ppDateTimeHmm;
|
|
1891
|
+
declare const ppDateTimeHmmss: PpDateTimeFormat.ppDateTimeHmmss;
|
|
1892
|
+
declare const ppDateTimehmmAMPM: PpDateTimeFormat.ppDateTimehmmAMPM;
|
|
1893
|
+
declare const ppDateTimehmmssAMPM: PpDateTimeFormat.ppDateTimehmmssAMPM;
|
|
1894
|
+
declare const ppDateTimeFigureOut: PpDateTimeFormat.ppDateTimeFigureOut;
|
|
1895
|
+
declare const ppDateTimeUAQ1: PpDateTimeFormat.ppDateTimeUAQ1;
|
|
1896
|
+
declare const ppDateTimeUAQ2: PpDateTimeFormat.ppDateTimeUAQ2;
|
|
1897
|
+
declare const ppDateTimeUAQ3: PpDateTimeFormat.ppDateTimeUAQ3;
|
|
1898
|
+
declare const ppDateTimeUAQ4: PpDateTimeFormat.ppDateTimeUAQ4;
|
|
1899
|
+
declare const ppDateTimeUAQ5: PpDateTimeFormat.ppDateTimeUAQ5;
|
|
1900
|
+
declare const ppDateTimeUAQ6: PpDateTimeFormat.ppDateTimeUAQ6;
|
|
1901
|
+
declare const ppDateTimeUAQ7: PpDateTimeFormat.ppDateTimeUAQ7;
|
|
1902
|
+
declare const ppDateTimeFullYear: PpDateTimeFormat.ppDateTimeFullYear;
|
|
1903
|
+
declare const ppTransitionSpeedMixed: PpTransitionSpeed.ppTransitionSpeedMixed;
|
|
1904
|
+
declare const ppTransitionSpeedSlow: PpTransitionSpeed.ppTransitionSpeedSlow;
|
|
1905
|
+
declare const ppTransitionSpeedMedium: PpTransitionSpeed.ppTransitionSpeedMedium;
|
|
1906
|
+
declare const ppTransitionSpeedFast: PpTransitionSpeed.ppTransitionSpeedFast;
|
|
1907
|
+
declare const ppMouseClick: PpMouseActivation.ppMouseClick;
|
|
1908
|
+
declare const ppMouseOver: PpMouseActivation.ppMouseOver;
|
|
1909
|
+
declare const ppActionMixed: PpActionType.ppActionMixed;
|
|
1910
|
+
declare const ppActionNone: PpActionType.ppActionNone;
|
|
1911
|
+
declare const ppActionNextSlide: PpActionType.ppActionNextSlide;
|
|
1912
|
+
declare const ppActionPreviousSlide: PpActionType.ppActionPreviousSlide;
|
|
1913
|
+
declare const ppActionFirstSlide: PpActionType.ppActionFirstSlide;
|
|
1914
|
+
declare const ppActionLastSlide: PpActionType.ppActionLastSlide;
|
|
1915
|
+
declare const ppActionLastSlideViewed: PpActionType.ppActionLastSlideViewed;
|
|
1916
|
+
declare const ppActionEndShow: PpActionType.ppActionEndShow;
|
|
1917
|
+
declare const ppActionHyperlink: PpActionType.ppActionHyperlink;
|
|
1918
|
+
declare const ppActionRunMacro: PpActionType.ppActionRunMacro;
|
|
1919
|
+
declare const ppActionRunProgram: PpActionType.ppActionRunProgram;
|
|
1920
|
+
declare const ppActionNamedSlideShow: PpActionType.ppActionNamedSlideShow;
|
|
1921
|
+
declare const ppActionOLEVerb: PpActionType.ppActionOLEVerb;
|
|
1922
|
+
declare const ppActionPlay: PpActionType.ppActionPlay;
|
|
1923
|
+
declare const ppPlaceholderMixed: PpPlaceholderType.ppPlaceholderMixed;
|
|
1924
|
+
declare const ppPlaceholderTitle: PpPlaceholderType.ppPlaceholderTitle;
|
|
1925
|
+
declare const ppPlaceholderBody: PpPlaceholderType.ppPlaceholderBody;
|
|
1926
|
+
declare const ppPlaceholderCenterTitle: PpPlaceholderType.ppPlaceholderCenterTitle;
|
|
1927
|
+
declare const ppPlaceholderSubtitle: PpPlaceholderType.ppPlaceholderSubtitle;
|
|
1928
|
+
declare const ppPlaceholderVerticalTitle: PpPlaceholderType.ppPlaceholderVerticalTitle;
|
|
1929
|
+
declare const ppPlaceholderVerticalBody: PpPlaceholderType.ppPlaceholderVerticalBody;
|
|
1930
|
+
declare const ppPlaceholderObject: PpPlaceholderType.ppPlaceholderObject;
|
|
1931
|
+
declare const ppPlaceholderChart: PpPlaceholderType.ppPlaceholderChart;
|
|
1932
|
+
declare const ppPlaceholderBitmap: PpPlaceholderType.ppPlaceholderBitmap;
|
|
1933
|
+
declare const ppPlaceholderMediaClip: PpPlaceholderType.ppPlaceholderMediaClip;
|
|
1934
|
+
declare const ppPlaceholderOrgChart: PpPlaceholderType.ppPlaceholderOrgChart;
|
|
1935
|
+
declare const ppPlaceholderTable: PpPlaceholderType.ppPlaceholderTable;
|
|
1936
|
+
declare const ppPlaceholderSlideNumber: PpPlaceholderType.ppPlaceholderSlideNumber;
|
|
1937
|
+
declare const ppPlaceholderHeader: PpPlaceholderType.ppPlaceholderHeader;
|
|
1938
|
+
declare const ppPlaceholderFooter: PpPlaceholderType.ppPlaceholderFooter;
|
|
1939
|
+
declare const ppPlaceholderDate: PpPlaceholderType.ppPlaceholderDate;
|
|
1940
|
+
declare const ppPlaceholderVerticalObject: PpPlaceholderType.ppPlaceholderVerticalObject;
|
|
1941
|
+
declare const ppPlaceholderPicture: PpPlaceholderType.ppPlaceholderPicture;
|
|
1942
|
+
declare const ppPlaceholderCameo: PpPlaceholderType.ppPlaceholderCameo;
|
|
1943
|
+
declare const ppShowTypeSpeaker: PpSlideShowType.ppShowTypeSpeaker;
|
|
1944
|
+
declare const ppShowTypeWindow: PpSlideShowType.ppShowTypeWindow;
|
|
1945
|
+
declare const ppShowTypeKiosk: PpSlideShowType.ppShowTypeKiosk;
|
|
1946
|
+
declare const ppShowTypeWindow2: PpSlideShowType.ppShowTypeWindow2;
|
|
1947
|
+
declare const ppPrintAll: PpPrintRangeType.ppPrintAll;
|
|
1948
|
+
declare const ppPrintSelection: PpPrintRangeType.ppPrintSelection;
|
|
1949
|
+
declare const ppPrintCurrent: PpPrintRangeType.ppPrintCurrent;
|
|
1950
|
+
declare const ppPrintSlideRange: PpPrintRangeType.ppPrintSlideRange;
|
|
1951
|
+
declare const ppPrintNamedSlideShow: PpPrintRangeType.ppPrintNamedSlideShow;
|
|
1952
|
+
declare const ppPrintSection: PpPrintRangeType.ppPrintSection;
|
|
1953
|
+
declare const ppAutoSizeMixed: PpAutoSize.ppAutoSizeMixed;
|
|
1954
|
+
declare const ppAutoSizeNone: PpAutoSize.ppAutoSizeNone;
|
|
1955
|
+
declare const ppAutoSizeShapeToFitText: PpAutoSize.ppAutoSizeShapeToFitText;
|
|
1956
|
+
declare const ppMediaTypeMixed: PpMediaType.ppMediaTypeMixed;
|
|
1957
|
+
declare const ppMediaTypeOther: PpMediaType.ppMediaTypeOther;
|
|
1958
|
+
declare const ppMediaTypeSound: PpMediaType.ppMediaTypeSound;
|
|
1959
|
+
declare const ppMediaTypeMovie: PpMediaType.ppMediaTypeMovie;
|
|
1960
|
+
declare const ppSoundFormatMixed: PpSoundFormatType.ppSoundFormatMixed;
|
|
1961
|
+
declare const ppSoundFormatNone: PpSoundFormatType.ppSoundFormatNone;
|
|
1962
|
+
declare const ppSoundFormatWAV: PpSoundFormatType.ppSoundFormatWAV;
|
|
1963
|
+
declare const ppSoundFormatMIDI: PpSoundFormatType.ppSoundFormatMIDI;
|
|
1964
|
+
declare const ppSoundFormatCDAudio: PpSoundFormatType.ppSoundFormatCDAudio;
|
|
1965
|
+
declare const ppFarEastLineBreakLevelNormal: PpFarEastLineBreakLevel.ppFarEastLineBreakLevelNormal;
|
|
1966
|
+
declare const ppFarEastLineBreakLevelStrict: PpFarEastLineBreakLevel.ppFarEastLineBreakLevelStrict;
|
|
1967
|
+
declare const ppFarEastLineBreakLevelCustom: PpFarEastLineBreakLevel.ppFarEastLineBreakLevelCustom;
|
|
1968
|
+
declare const ppShowAll: PpSlideShowRangeType.ppShowAll;
|
|
1969
|
+
declare const ppShowSlideRange: PpSlideShowRangeType.ppShowSlideRange;
|
|
1970
|
+
declare const ppShowNamedSlideShow: PpSlideShowRangeType.ppShowNamedSlideShow;
|
|
1971
|
+
declare const ppFrameColorsBrowserColors: PpFrameColors.ppFrameColorsBrowserColors;
|
|
1972
|
+
declare const ppFrameColorsPresentationSchemeTextColor: PpFrameColors.ppFrameColorsPresentationSchemeTextColor;
|
|
1973
|
+
declare const ppFrameColorsPresentationSchemeAccentColor: PpFrameColors.ppFrameColorsPresentationSchemeAccentColor;
|
|
1974
|
+
declare const ppFrameColorsWhiteTextOnBlack: PpFrameColors.ppFrameColorsWhiteTextOnBlack;
|
|
1975
|
+
declare const ppFrameColorsBlackTextOnWhite: PpFrameColors.ppFrameColorsBlackTextOnWhite;
|
|
1976
|
+
declare const ppBorderTop: PpBorderType.ppBorderTop;
|
|
1977
|
+
declare const ppBorderLeft: PpBorderType.ppBorderLeft;
|
|
1978
|
+
declare const ppBorderBottom: PpBorderType.ppBorderBottom;
|
|
1979
|
+
declare const ppBorderRight: PpBorderType.ppBorderRight;
|
|
1980
|
+
declare const ppBorderDiagonalDown: PpBorderType.ppBorderDiagonalDown;
|
|
1981
|
+
declare const ppBorderDiagonalUp: PpBorderType.ppBorderDiagonalUp;
|
|
1982
|
+
declare const ppHTMLv3: PpHTMLVersion.ppHTMLv3;
|
|
1983
|
+
declare const ppHTMLv4: PpHTMLVersion.ppHTMLv4;
|
|
1984
|
+
declare const ppHTMLDual: PpHTMLVersion.ppHTMLDual;
|
|
1985
|
+
declare const ppHTMLAutodetect: PpHTMLVersion.ppHTMLAutodetect;
|
|
1986
|
+
declare const ppPublishAll: PpPublishSourceType.ppPublishAll;
|
|
1987
|
+
declare const ppPublishSlideRange: PpPublishSourceType.ppPublishSlideRange;
|
|
1988
|
+
declare const ppPublishNamedSlideShow: PpPublishSourceType.ppPublishNamedSlideShow;
|
|
1989
|
+
declare const ppBulletMixed: PpBulletType.ppBulletMixed;
|
|
1990
|
+
declare const ppBulletNone: PpBulletType.ppBulletNone;
|
|
1991
|
+
declare const ppBulletUnnumbered: PpBulletType.ppBulletUnnumbered;
|
|
1992
|
+
declare const ppBulletNumbered: PpBulletType.ppBulletNumbered;
|
|
1993
|
+
declare const ppBulletPicture: PpBulletType.ppBulletPicture;
|
|
1994
|
+
declare const ppBulletStyleMixed: PpNumberedBulletStyle.ppBulletStyleMixed;
|
|
1995
|
+
declare const ppBulletAlphaLCPeriod: PpNumberedBulletStyle.ppBulletAlphaLCPeriod;
|
|
1996
|
+
declare const ppBulletAlphaUCPeriod: PpNumberedBulletStyle.ppBulletAlphaUCPeriod;
|
|
1997
|
+
declare const ppBulletArabicParenRight: PpNumberedBulletStyle.ppBulletArabicParenRight;
|
|
1998
|
+
declare const ppBulletArabicPeriod: PpNumberedBulletStyle.ppBulletArabicPeriod;
|
|
1999
|
+
declare const ppBulletRomanLCParenBoth: PpNumberedBulletStyle.ppBulletRomanLCParenBoth;
|
|
2000
|
+
declare const ppBulletRomanLCParenRight: PpNumberedBulletStyle.ppBulletRomanLCParenRight;
|
|
2001
|
+
declare const ppBulletRomanLCPeriod: PpNumberedBulletStyle.ppBulletRomanLCPeriod;
|
|
2002
|
+
declare const ppBulletRomanUCPeriod: PpNumberedBulletStyle.ppBulletRomanUCPeriod;
|
|
2003
|
+
declare const ppBulletAlphaLCParenBoth: PpNumberedBulletStyle.ppBulletAlphaLCParenBoth;
|
|
2004
|
+
declare const ppBulletAlphaLCParenRight: PpNumberedBulletStyle.ppBulletAlphaLCParenRight;
|
|
2005
|
+
declare const ppBulletAlphaUCParenBoth: PpNumberedBulletStyle.ppBulletAlphaUCParenBoth;
|
|
2006
|
+
declare const ppBulletAlphaUCParenRight: PpNumberedBulletStyle.ppBulletAlphaUCParenRight;
|
|
2007
|
+
declare const ppBulletArabicParenBoth: PpNumberedBulletStyle.ppBulletArabicParenBoth;
|
|
2008
|
+
declare const ppBulletArabicPlain: PpNumberedBulletStyle.ppBulletArabicPlain;
|
|
2009
|
+
declare const ppBulletRomanUCParenBoth: PpNumberedBulletStyle.ppBulletRomanUCParenBoth;
|
|
2010
|
+
declare const ppBulletRomanUCParenRight: PpNumberedBulletStyle.ppBulletRomanUCParenRight;
|
|
2011
|
+
declare const ppBulletSimpChinPlain: PpNumberedBulletStyle.ppBulletSimpChinPlain;
|
|
2012
|
+
declare const ppBulletSimpChinPeriod: PpNumberedBulletStyle.ppBulletSimpChinPeriod;
|
|
2013
|
+
declare const ppBulletCircleNumDBPlain: PpNumberedBulletStyle.ppBulletCircleNumDBPlain;
|
|
2014
|
+
declare const ppBulletCircleNumWDWhitePlain: PpNumberedBulletStyle.ppBulletCircleNumWDWhitePlain;
|
|
2015
|
+
declare const ppBulletCircleNumWDBlackPlain: PpNumberedBulletStyle.ppBulletCircleNumWDBlackPlain;
|
|
2016
|
+
declare const ppBulletTradChinPlain: PpNumberedBulletStyle.ppBulletTradChinPlain;
|
|
2017
|
+
declare const ppBulletTradChinPeriod: PpNumberedBulletStyle.ppBulletTradChinPeriod;
|
|
2018
|
+
declare const ppBulletArabicAlphaDash: PpNumberedBulletStyle.ppBulletArabicAlphaDash;
|
|
2019
|
+
declare const ppBulletArabicAbjadDash: PpNumberedBulletStyle.ppBulletArabicAbjadDash;
|
|
2020
|
+
declare const ppBulletHebrewAlphaDash: PpNumberedBulletStyle.ppBulletHebrewAlphaDash;
|
|
2021
|
+
declare const ppBulletKanjiKoreanPlain: PpNumberedBulletStyle.ppBulletKanjiKoreanPlain;
|
|
2022
|
+
declare const ppBulletKanjiKoreanPeriod: PpNumberedBulletStyle.ppBulletKanjiKoreanPeriod;
|
|
2023
|
+
declare const ppBulletArabicDBPlain: PpNumberedBulletStyle.ppBulletArabicDBPlain;
|
|
2024
|
+
declare const ppBulletArabicDBPeriod: PpNumberedBulletStyle.ppBulletArabicDBPeriod;
|
|
2025
|
+
declare const ppBulletThaiAlphaPeriod: PpNumberedBulletStyle.ppBulletThaiAlphaPeriod;
|
|
2026
|
+
declare const ppBulletThaiAlphaParenRight: PpNumberedBulletStyle.ppBulletThaiAlphaParenRight;
|
|
2027
|
+
declare const ppBulletThaiAlphaParenBoth: PpNumberedBulletStyle.ppBulletThaiAlphaParenBoth;
|
|
2028
|
+
declare const ppBulletThaiNumPeriod: PpNumberedBulletStyle.ppBulletThaiNumPeriod;
|
|
2029
|
+
declare const ppBulletThaiNumParenRight: PpNumberedBulletStyle.ppBulletThaiNumParenRight;
|
|
2030
|
+
declare const ppBulletThaiNumParenBoth: PpNumberedBulletStyle.ppBulletThaiNumParenBoth;
|
|
2031
|
+
declare const ppBulletHindiAlphaPeriod: PpNumberedBulletStyle.ppBulletHindiAlphaPeriod;
|
|
2032
|
+
declare const ppBulletHindiNumPeriod: PpNumberedBulletStyle.ppBulletHindiNumPeriod;
|
|
2033
|
+
declare const ppBulletKanjiSimpChinDBPeriod: PpNumberedBulletStyle.ppBulletKanjiSimpChinDBPeriod;
|
|
2034
|
+
declare const ppBulletHindiNumParenRight: PpNumberedBulletStyle.ppBulletHindiNumParenRight;
|
|
2035
|
+
declare const ppBulletHindiAlpha1Period: PpNumberedBulletStyle.ppBulletHindiAlpha1Period;
|
|
2036
|
+
declare const ppShapeFormatGIF: PpShapeFormat.ppShapeFormatGIF;
|
|
2037
|
+
declare const ppShapeFormatJPG: PpShapeFormat.ppShapeFormatJPG;
|
|
2038
|
+
declare const ppShapeFormatPNG: PpShapeFormat.ppShapeFormatPNG;
|
|
2039
|
+
declare const ppShapeFormatBMP: PpShapeFormat.ppShapeFormatBMP;
|
|
2040
|
+
declare const ppShapeFormatWMF: PpShapeFormat.ppShapeFormatWMF;
|
|
2041
|
+
declare const ppShapeFormatEMF: PpShapeFormat.ppShapeFormatEMF;
|
|
2042
|
+
declare const ppShapeFormatSVG: PpShapeFormat.ppShapeFormatSVG;
|
|
2043
|
+
declare const ppRelativeToSlide: PpExportMode.ppRelativeToSlide;
|
|
2044
|
+
declare const ppClipRelativeToSlide: PpExportMode.ppClipRelativeToSlide;
|
|
2045
|
+
declare const ppScaleToFit: PpExportMode.ppScaleToFit;
|
|
2046
|
+
declare const ppScaleXY: PpExportMode.ppScaleXY;
|
|
2047
|
+
declare const ppPasteDefault: PpPasteDataType.ppPasteDefault;
|
|
2048
|
+
declare const ppPasteBitmap: PpPasteDataType.ppPasteBitmap;
|
|
2049
|
+
declare const ppPasteEnhancedMetafile: PpPasteDataType.ppPasteEnhancedMetafile;
|
|
2050
|
+
declare const ppPasteMetafilePicture: PpPasteDataType.ppPasteMetafilePicture;
|
|
2051
|
+
declare const ppPasteGIF: PpPasteDataType.ppPasteGIF;
|
|
2052
|
+
declare const ppPasteJPG: PpPasteDataType.ppPasteJPG;
|
|
2053
|
+
declare const ppPastePNG: PpPasteDataType.ppPastePNG;
|
|
2054
|
+
declare const ppPasteText: PpPasteDataType.ppPasteText;
|
|
2055
|
+
declare const ppPasteHTML: PpPasteDataType.ppPasteHTML;
|
|
2056
|
+
declare const ppPasteRTF: PpPasteDataType.ppPasteRTF;
|
|
2057
|
+
declare const ppPasteOLEObject: PpPasteDataType.ppPasteOLEObject;
|
|
2058
|
+
declare const ppPasteShape: PpPasteDataType.ppPasteShape;
|
|
2059
|
+
declare const ppPasteSVG: PpPasteDataType.ppPasteSVG;
|
|
2060
|
+
declare const msoAnimEffectCustom: MsoAnimEffect.msoAnimEffectCustom;
|
|
2061
|
+
declare const msoAnimEffectAppear: MsoAnimEffect.msoAnimEffectAppear;
|
|
2062
|
+
declare const msoAnimEffectFly: MsoAnimEffect.msoAnimEffectFly;
|
|
2063
|
+
declare const msoAnimEffectBlinds: MsoAnimEffect.msoAnimEffectBlinds;
|
|
2064
|
+
declare const msoAnimEffectBox: MsoAnimEffect.msoAnimEffectBox;
|
|
2065
|
+
declare const msoAnimEffectCheckerboard: MsoAnimEffect.msoAnimEffectCheckerboard;
|
|
2066
|
+
declare const msoAnimEffectCircle: MsoAnimEffect.msoAnimEffectCircle;
|
|
2067
|
+
declare const msoAnimEffectCrawl: MsoAnimEffect.msoAnimEffectCrawl;
|
|
2068
|
+
declare const msoAnimEffectDiamond: MsoAnimEffect.msoAnimEffectDiamond;
|
|
2069
|
+
declare const msoAnimEffectDissolve: MsoAnimEffect.msoAnimEffectDissolve;
|
|
2070
|
+
declare const msoAnimEffectFade: MsoAnimEffect.msoAnimEffectFade;
|
|
2071
|
+
declare const msoAnimEffectFlashOnce: MsoAnimEffect.msoAnimEffectFlashOnce;
|
|
2072
|
+
declare const msoAnimEffectPeek: MsoAnimEffect.msoAnimEffectPeek;
|
|
2073
|
+
declare const msoAnimEffectPlus: MsoAnimEffect.msoAnimEffectPlus;
|
|
2074
|
+
declare const msoAnimEffectRandomBars: MsoAnimEffect.msoAnimEffectRandomBars;
|
|
2075
|
+
declare const msoAnimEffectSpiral: MsoAnimEffect.msoAnimEffectSpiral;
|
|
2076
|
+
declare const msoAnimEffectSplit: MsoAnimEffect.msoAnimEffectSplit;
|
|
2077
|
+
declare const msoAnimEffectStretch: MsoAnimEffect.msoAnimEffectStretch;
|
|
2078
|
+
declare const msoAnimEffectStrips: MsoAnimEffect.msoAnimEffectStrips;
|
|
2079
|
+
declare const msoAnimEffectSwivel: MsoAnimEffect.msoAnimEffectSwivel;
|
|
2080
|
+
declare const msoAnimEffectWedge: MsoAnimEffect.msoAnimEffectWedge;
|
|
2081
|
+
declare const msoAnimEffectWheel: MsoAnimEffect.msoAnimEffectWheel;
|
|
2082
|
+
declare const msoAnimEffectWipe: MsoAnimEffect.msoAnimEffectWipe;
|
|
2083
|
+
declare const msoAnimEffectZoom: MsoAnimEffect.msoAnimEffectZoom;
|
|
2084
|
+
declare const msoAnimEffectRandomEffects: MsoAnimEffect.msoAnimEffectRandomEffects;
|
|
2085
|
+
declare const msoAnimEffectBoomerang: MsoAnimEffect.msoAnimEffectBoomerang;
|
|
2086
|
+
declare const msoAnimEffectBounce: MsoAnimEffect.msoAnimEffectBounce;
|
|
2087
|
+
declare const msoAnimEffectColorReveal: MsoAnimEffect.msoAnimEffectColorReveal;
|
|
2088
|
+
declare const msoAnimEffectCredits: MsoAnimEffect.msoAnimEffectCredits;
|
|
2089
|
+
declare const msoAnimEffectEaseIn: MsoAnimEffect.msoAnimEffectEaseIn;
|
|
2090
|
+
declare const msoAnimEffectFloat: MsoAnimEffect.msoAnimEffectFloat;
|
|
2091
|
+
declare const msoAnimEffectGrowAndTurn: MsoAnimEffect.msoAnimEffectGrowAndTurn;
|
|
2092
|
+
declare const msoAnimEffectLightSpeed: MsoAnimEffect.msoAnimEffectLightSpeed;
|
|
2093
|
+
declare const msoAnimEffectPinwheel: MsoAnimEffect.msoAnimEffectPinwheel;
|
|
2094
|
+
declare const msoAnimEffectRiseUp: MsoAnimEffect.msoAnimEffectRiseUp;
|
|
2095
|
+
declare const msoAnimEffectSwish: MsoAnimEffect.msoAnimEffectSwish;
|
|
2096
|
+
declare const msoAnimEffectThinLine: MsoAnimEffect.msoAnimEffectThinLine;
|
|
2097
|
+
declare const msoAnimEffectUnfold: MsoAnimEffect.msoAnimEffectUnfold;
|
|
2098
|
+
declare const msoAnimEffectWhip: MsoAnimEffect.msoAnimEffectWhip;
|
|
2099
|
+
declare const msoAnimEffectAscend: MsoAnimEffect.msoAnimEffectAscend;
|
|
2100
|
+
declare const msoAnimEffectCenterRevolve: MsoAnimEffect.msoAnimEffectCenterRevolve;
|
|
2101
|
+
declare const msoAnimEffectFadedSwivel: MsoAnimEffect.msoAnimEffectFadedSwivel;
|
|
2102
|
+
declare const msoAnimEffectDescend: MsoAnimEffect.msoAnimEffectDescend;
|
|
2103
|
+
declare const msoAnimEffectSling: MsoAnimEffect.msoAnimEffectSling;
|
|
2104
|
+
declare const msoAnimEffectSpinner: MsoAnimEffect.msoAnimEffectSpinner;
|
|
2105
|
+
declare const msoAnimEffectStretchy: MsoAnimEffect.msoAnimEffectStretchy;
|
|
2106
|
+
declare const msoAnimEffectZip: MsoAnimEffect.msoAnimEffectZip;
|
|
2107
|
+
declare const msoAnimEffectArcUp: MsoAnimEffect.msoAnimEffectArcUp;
|
|
2108
|
+
declare const msoAnimEffectFadedZoom: MsoAnimEffect.msoAnimEffectFadedZoom;
|
|
2109
|
+
declare const msoAnimEffectGlide: MsoAnimEffect.msoAnimEffectGlide;
|
|
2110
|
+
declare const msoAnimEffectExpand: MsoAnimEffect.msoAnimEffectExpand;
|
|
2111
|
+
declare const msoAnimEffectFlip: MsoAnimEffect.msoAnimEffectFlip;
|
|
2112
|
+
declare const msoAnimEffectShimmer: MsoAnimEffect.msoAnimEffectShimmer;
|
|
2113
|
+
declare const msoAnimEffectFold: MsoAnimEffect.msoAnimEffectFold;
|
|
2114
|
+
declare const msoAnimEffectChangeFillColor: MsoAnimEffect.msoAnimEffectChangeFillColor;
|
|
2115
|
+
declare const msoAnimEffectChangeFont: MsoAnimEffect.msoAnimEffectChangeFont;
|
|
2116
|
+
declare const msoAnimEffectChangeFontColor: MsoAnimEffect.msoAnimEffectChangeFontColor;
|
|
2117
|
+
declare const msoAnimEffectChangeFontSize: MsoAnimEffect.msoAnimEffectChangeFontSize;
|
|
2118
|
+
declare const msoAnimEffectChangeFontStyle: MsoAnimEffect.msoAnimEffectChangeFontStyle;
|
|
2119
|
+
declare const msoAnimEffectGrowShrink: MsoAnimEffect.msoAnimEffectGrowShrink;
|
|
2120
|
+
declare const msoAnimEffectChangeLineColor: MsoAnimEffect.msoAnimEffectChangeLineColor;
|
|
2121
|
+
declare const msoAnimEffectSpin: MsoAnimEffect.msoAnimEffectSpin;
|
|
2122
|
+
declare const msoAnimEffectTransparency: MsoAnimEffect.msoAnimEffectTransparency;
|
|
2123
|
+
declare const msoAnimEffectBoldFlash: MsoAnimEffect.msoAnimEffectBoldFlash;
|
|
2124
|
+
declare const msoAnimEffectBlast: MsoAnimEffect.msoAnimEffectBlast;
|
|
2125
|
+
declare const msoAnimEffectBoldReveal: MsoAnimEffect.msoAnimEffectBoldReveal;
|
|
2126
|
+
declare const msoAnimEffectBrushOnColor: MsoAnimEffect.msoAnimEffectBrushOnColor;
|
|
2127
|
+
declare const msoAnimEffectBrushOnUnderline: MsoAnimEffect.msoAnimEffectBrushOnUnderline;
|
|
2128
|
+
declare const msoAnimEffectColorBlend: MsoAnimEffect.msoAnimEffectColorBlend;
|
|
2129
|
+
declare const msoAnimEffectColorWave: MsoAnimEffect.msoAnimEffectColorWave;
|
|
2130
|
+
declare const msoAnimEffectComplementaryColor: MsoAnimEffect.msoAnimEffectComplementaryColor;
|
|
2131
|
+
declare const msoAnimEffectComplementaryColor2: MsoAnimEffect.msoAnimEffectComplementaryColor2;
|
|
2132
|
+
declare const msoAnimEffectContrastingColor: MsoAnimEffect.msoAnimEffectContrastingColor;
|
|
2133
|
+
declare const msoAnimEffectDarken: MsoAnimEffect.msoAnimEffectDarken;
|
|
2134
|
+
declare const msoAnimEffectDesaturate: MsoAnimEffect.msoAnimEffectDesaturate;
|
|
2135
|
+
declare const msoAnimEffectFlashBulb: MsoAnimEffect.msoAnimEffectFlashBulb;
|
|
2136
|
+
declare const msoAnimEffectFlicker: MsoAnimEffect.msoAnimEffectFlicker;
|
|
2137
|
+
declare const msoAnimEffectGrowWithColor: MsoAnimEffect.msoAnimEffectGrowWithColor;
|
|
2138
|
+
declare const msoAnimEffectLighten: MsoAnimEffect.msoAnimEffectLighten;
|
|
2139
|
+
declare const msoAnimEffectStyleEmphasis: MsoAnimEffect.msoAnimEffectStyleEmphasis;
|
|
2140
|
+
declare const msoAnimEffectTeeter: MsoAnimEffect.msoAnimEffectTeeter;
|
|
2141
|
+
declare const msoAnimEffectVerticalGrow: MsoAnimEffect.msoAnimEffectVerticalGrow;
|
|
2142
|
+
declare const msoAnimEffectWave: MsoAnimEffect.msoAnimEffectWave;
|
|
2143
|
+
declare const msoAnimEffectMediaPlay: MsoAnimEffect.msoAnimEffectMediaPlay;
|
|
2144
|
+
declare const msoAnimEffectMediaPause: MsoAnimEffect.msoAnimEffectMediaPause;
|
|
2145
|
+
declare const msoAnimEffectMediaStop: MsoAnimEffect.msoAnimEffectMediaStop;
|
|
2146
|
+
declare const msoAnimEffectPathCircle: MsoAnimEffect.msoAnimEffectPathCircle;
|
|
2147
|
+
declare const msoAnimEffectPathRightTriangle: MsoAnimEffect.msoAnimEffectPathRightTriangle;
|
|
2148
|
+
declare const msoAnimEffectPathDiamond: MsoAnimEffect.msoAnimEffectPathDiamond;
|
|
2149
|
+
declare const msoAnimEffectPathHexagon: MsoAnimEffect.msoAnimEffectPathHexagon;
|
|
2150
|
+
declare const msoAnimEffectPath5PointStar: MsoAnimEffect.msoAnimEffectPath5PointStar;
|
|
2151
|
+
declare const msoAnimEffectPathCrescentMoon: MsoAnimEffect.msoAnimEffectPathCrescentMoon;
|
|
2152
|
+
declare const msoAnimEffectPathSquare: MsoAnimEffect.msoAnimEffectPathSquare;
|
|
2153
|
+
declare const msoAnimEffectPathTrapezoid: MsoAnimEffect.msoAnimEffectPathTrapezoid;
|
|
2154
|
+
declare const msoAnimEffectPathHeart: MsoAnimEffect.msoAnimEffectPathHeart;
|
|
2155
|
+
declare const msoAnimEffectPathOctagon: MsoAnimEffect.msoAnimEffectPathOctagon;
|
|
2156
|
+
declare const msoAnimEffectPath6PointStar: MsoAnimEffect.msoAnimEffectPath6PointStar;
|
|
2157
|
+
declare const msoAnimEffectPathFootball: MsoAnimEffect.msoAnimEffectPathFootball;
|
|
2158
|
+
declare const msoAnimEffectPathEqualTriangle: MsoAnimEffect.msoAnimEffectPathEqualTriangle;
|
|
2159
|
+
declare const msoAnimEffectPathParallelogram: MsoAnimEffect.msoAnimEffectPathParallelogram;
|
|
2160
|
+
declare const msoAnimEffectPathPentagon: MsoAnimEffect.msoAnimEffectPathPentagon;
|
|
2161
|
+
declare const msoAnimEffectPath4PointStar: MsoAnimEffect.msoAnimEffectPath4PointStar;
|
|
2162
|
+
declare const msoAnimEffectPath8PointStar: MsoAnimEffect.msoAnimEffectPath8PointStar;
|
|
2163
|
+
declare const msoAnimEffectPathTeardrop: MsoAnimEffect.msoAnimEffectPathTeardrop;
|
|
2164
|
+
declare const msoAnimEffectPathPointyStar: MsoAnimEffect.msoAnimEffectPathPointyStar;
|
|
2165
|
+
declare const msoAnimEffectPathCurvedSquare: MsoAnimEffect.msoAnimEffectPathCurvedSquare;
|
|
2166
|
+
declare const msoAnimEffectPathCurvedX: MsoAnimEffect.msoAnimEffectPathCurvedX;
|
|
2167
|
+
declare const msoAnimEffectPathVerticalFigure8: MsoAnimEffect.msoAnimEffectPathVerticalFigure8;
|
|
2168
|
+
declare const msoAnimEffectPathCurvyStar: MsoAnimEffect.msoAnimEffectPathCurvyStar;
|
|
2169
|
+
declare const msoAnimEffectPathLoopdeLoop: MsoAnimEffect.msoAnimEffectPathLoopdeLoop;
|
|
2170
|
+
declare const msoAnimEffectPathBuzzsaw: MsoAnimEffect.msoAnimEffectPathBuzzsaw;
|
|
2171
|
+
declare const msoAnimEffectPathHorizontalFigure8: MsoAnimEffect.msoAnimEffectPathHorizontalFigure8;
|
|
2172
|
+
declare const msoAnimEffectPathPeanut: MsoAnimEffect.msoAnimEffectPathPeanut;
|
|
2173
|
+
declare const msoAnimEffectPathFigure8Four: MsoAnimEffect.msoAnimEffectPathFigure8Four;
|
|
2174
|
+
declare const msoAnimEffectPathNeutron: MsoAnimEffect.msoAnimEffectPathNeutron;
|
|
2175
|
+
declare const msoAnimEffectPathSwoosh: MsoAnimEffect.msoAnimEffectPathSwoosh;
|
|
2176
|
+
declare const msoAnimEffectPathBean: MsoAnimEffect.msoAnimEffectPathBean;
|
|
2177
|
+
declare const msoAnimEffectPathPlus: MsoAnimEffect.msoAnimEffectPathPlus;
|
|
2178
|
+
declare const msoAnimEffectPathInvertedTriangle: MsoAnimEffect.msoAnimEffectPathInvertedTriangle;
|
|
2179
|
+
declare const msoAnimEffectPathInvertedSquare: MsoAnimEffect.msoAnimEffectPathInvertedSquare;
|
|
2180
|
+
declare const msoAnimEffectPathLeft: MsoAnimEffect.msoAnimEffectPathLeft;
|
|
2181
|
+
declare const msoAnimEffectPathTurnRight: MsoAnimEffect.msoAnimEffectPathTurnRight;
|
|
2182
|
+
declare const msoAnimEffectPathArcDown: MsoAnimEffect.msoAnimEffectPathArcDown;
|
|
2183
|
+
declare const msoAnimEffectPathZigzag: MsoAnimEffect.msoAnimEffectPathZigzag;
|
|
2184
|
+
declare const msoAnimEffectPathSCurve2: MsoAnimEffect.msoAnimEffectPathSCurve2;
|
|
2185
|
+
declare const msoAnimEffectPathSineWave: MsoAnimEffect.msoAnimEffectPathSineWave;
|
|
2186
|
+
declare const msoAnimEffectPathBounceLeft: MsoAnimEffect.msoAnimEffectPathBounceLeft;
|
|
2187
|
+
declare const msoAnimEffectPathDown: MsoAnimEffect.msoAnimEffectPathDown;
|
|
2188
|
+
declare const msoAnimEffectPathTurnUp: MsoAnimEffect.msoAnimEffectPathTurnUp;
|
|
2189
|
+
declare const msoAnimEffectPathArcUp: MsoAnimEffect.msoAnimEffectPathArcUp;
|
|
2190
|
+
declare const msoAnimEffectPathHeartbeat: MsoAnimEffect.msoAnimEffectPathHeartbeat;
|
|
2191
|
+
declare const msoAnimEffectPathSpiralRight: MsoAnimEffect.msoAnimEffectPathSpiralRight;
|
|
2192
|
+
declare const msoAnimEffectPathWave: MsoAnimEffect.msoAnimEffectPathWave;
|
|
2193
|
+
declare const msoAnimEffectPathCurvyLeft: MsoAnimEffect.msoAnimEffectPathCurvyLeft;
|
|
2194
|
+
declare const msoAnimEffectPathDiagonalDownRight: MsoAnimEffect.msoAnimEffectPathDiagonalDownRight;
|
|
2195
|
+
declare const msoAnimEffectPathTurnDown: MsoAnimEffect.msoAnimEffectPathTurnDown;
|
|
2196
|
+
declare const msoAnimEffectPathArcLeft: MsoAnimEffect.msoAnimEffectPathArcLeft;
|
|
2197
|
+
declare const msoAnimEffectPathFunnel: MsoAnimEffect.msoAnimEffectPathFunnel;
|
|
2198
|
+
declare const msoAnimEffectPathSpring: MsoAnimEffect.msoAnimEffectPathSpring;
|
|
2199
|
+
declare const msoAnimEffectPathBounceRight: MsoAnimEffect.msoAnimEffectPathBounceRight;
|
|
2200
|
+
declare const msoAnimEffectPathSpiralLeft: MsoAnimEffect.msoAnimEffectPathSpiralLeft;
|
|
2201
|
+
declare const msoAnimEffectPathDiagonalUpRight: MsoAnimEffect.msoAnimEffectPathDiagonalUpRight;
|
|
2202
|
+
declare const msoAnimEffectPathTurnUpRight: MsoAnimEffect.msoAnimEffectPathTurnUpRight;
|
|
2203
|
+
declare const msoAnimEffectPathArcRight: MsoAnimEffect.msoAnimEffectPathArcRight;
|
|
2204
|
+
declare const msoAnimEffectPathSCurve1: MsoAnimEffect.msoAnimEffectPathSCurve1;
|
|
2205
|
+
declare const msoAnimEffectPathDecayingWave: MsoAnimEffect.msoAnimEffectPathDecayingWave;
|
|
2206
|
+
declare const msoAnimEffectPathCurvyRight: MsoAnimEffect.msoAnimEffectPathCurvyRight;
|
|
2207
|
+
declare const msoAnimEffectPathStairsDown: MsoAnimEffect.msoAnimEffectPathStairsDown;
|
|
2208
|
+
declare const msoAnimEffectPathUp: MsoAnimEffect.msoAnimEffectPathUp;
|
|
2209
|
+
declare const msoAnimEffectPathRight: MsoAnimEffect.msoAnimEffectPathRight;
|
|
2210
|
+
declare const msoAnimEffectMediaPlayFromBookmark: MsoAnimEffect.msoAnimEffectMediaPlayFromBookmark;
|
|
2211
|
+
declare const msoAnimEffect3DArrive: MsoAnimEffect.msoAnimEffect3DArrive;
|
|
2212
|
+
declare const msoAnimEffect3DTurntable: MsoAnimEffect.msoAnimEffect3DTurntable;
|
|
2213
|
+
declare const msoAnimEffect3DSwing: MsoAnimEffect.msoAnimEffect3DSwing;
|
|
2214
|
+
declare const msoAnimEffect3DJumpAndTurn: MsoAnimEffect.msoAnimEffect3DJumpAndTurn;
|
|
2215
|
+
declare const msoAnimateLevelMixed: MsoAnimateByLevel.msoAnimateLevelMixed;
|
|
2216
|
+
declare const msoAnimateLevelNone: MsoAnimateByLevel.msoAnimateLevelNone;
|
|
2217
|
+
declare const msoAnimateTextByAllLevels: MsoAnimateByLevel.msoAnimateTextByAllLevels;
|
|
2218
|
+
declare const msoAnimateTextByFirstLevel: MsoAnimateByLevel.msoAnimateTextByFirstLevel;
|
|
2219
|
+
declare const msoAnimateTextBySecondLevel: MsoAnimateByLevel.msoAnimateTextBySecondLevel;
|
|
2220
|
+
declare const msoAnimateTextByThirdLevel: MsoAnimateByLevel.msoAnimateTextByThirdLevel;
|
|
2221
|
+
declare const msoAnimateTextByFourthLevel: MsoAnimateByLevel.msoAnimateTextByFourthLevel;
|
|
2222
|
+
declare const msoAnimateTextByFifthLevel: MsoAnimateByLevel.msoAnimateTextByFifthLevel;
|
|
2223
|
+
declare const msoAnimateChartAllAtOnce: MsoAnimateByLevel.msoAnimateChartAllAtOnce;
|
|
2224
|
+
declare const msoAnimateChartByCategory: MsoAnimateByLevel.msoAnimateChartByCategory;
|
|
2225
|
+
declare const msoAnimateChartByCategoryElements: MsoAnimateByLevel.msoAnimateChartByCategoryElements;
|
|
2226
|
+
declare const msoAnimateChartBySeries: MsoAnimateByLevel.msoAnimateChartBySeries;
|
|
2227
|
+
declare const msoAnimateChartBySeriesElements: MsoAnimateByLevel.msoAnimateChartBySeriesElements;
|
|
2228
|
+
declare const msoAnimateDiagramAllAtOnce: MsoAnimateByLevel.msoAnimateDiagramAllAtOnce;
|
|
2229
|
+
declare const msoAnimateDiagramDepthByNode: MsoAnimateByLevel.msoAnimateDiagramDepthByNode;
|
|
2230
|
+
declare const msoAnimateDiagramDepthByBranch: MsoAnimateByLevel.msoAnimateDiagramDepthByBranch;
|
|
2231
|
+
declare const msoAnimateDiagramBreadthByNode: MsoAnimateByLevel.msoAnimateDiagramBreadthByNode;
|
|
2232
|
+
declare const msoAnimateDiagramBreadthByLevel: MsoAnimateByLevel.msoAnimateDiagramBreadthByLevel;
|
|
2233
|
+
declare const msoAnimateDiagramClockwise: MsoAnimateByLevel.msoAnimateDiagramClockwise;
|
|
2234
|
+
declare const msoAnimateDiagramClockwiseIn: MsoAnimateByLevel.msoAnimateDiagramClockwiseIn;
|
|
2235
|
+
declare const msoAnimateDiagramClockwiseOut: MsoAnimateByLevel.msoAnimateDiagramClockwiseOut;
|
|
2236
|
+
declare const msoAnimateDiagramCounterClockwise: MsoAnimateByLevel.msoAnimateDiagramCounterClockwise;
|
|
2237
|
+
declare const msoAnimateDiagramCounterClockwiseIn: MsoAnimateByLevel.msoAnimateDiagramCounterClockwiseIn;
|
|
2238
|
+
declare const msoAnimateDiagramCounterClockwiseOut: MsoAnimateByLevel.msoAnimateDiagramCounterClockwiseOut;
|
|
2239
|
+
declare const msoAnimateDiagramInByRing: MsoAnimateByLevel.msoAnimateDiagramInByRing;
|
|
2240
|
+
declare const msoAnimateDiagramOutByRing: MsoAnimateByLevel.msoAnimateDiagramOutByRing;
|
|
2241
|
+
declare const msoAnimateDiagramUp: MsoAnimateByLevel.msoAnimateDiagramUp;
|
|
2242
|
+
declare const msoAnimateDiagramDown: MsoAnimateByLevel.msoAnimateDiagramDown;
|
|
2243
|
+
declare const msoAnimTriggerMixed: MsoAnimTriggerType.msoAnimTriggerMixed;
|
|
2244
|
+
declare const msoAnimTriggerNone: MsoAnimTriggerType.msoAnimTriggerNone;
|
|
2245
|
+
declare const msoAnimTriggerOnPageClick: MsoAnimTriggerType.msoAnimTriggerOnPageClick;
|
|
2246
|
+
declare const msoAnimTriggerWithPrevious: MsoAnimTriggerType.msoAnimTriggerWithPrevious;
|
|
2247
|
+
declare const msoAnimTriggerAfterPrevious: MsoAnimTriggerType.msoAnimTriggerAfterPrevious;
|
|
2248
|
+
declare const msoAnimTriggerOnShapeClick: MsoAnimTriggerType.msoAnimTriggerOnShapeClick;
|
|
2249
|
+
declare const msoAnimTriggerOnMediaBookmark: MsoAnimTriggerType.msoAnimTriggerOnMediaBookmark;
|
|
2250
|
+
declare const msoAnimAfterEffectMixed: MsoAnimAfterEffect.msoAnimAfterEffectMixed;
|
|
2251
|
+
declare const msoAnimAfterEffectNone: MsoAnimAfterEffect.msoAnimAfterEffectNone;
|
|
2252
|
+
declare const msoAnimAfterEffectDim: MsoAnimAfterEffect.msoAnimAfterEffectDim;
|
|
2253
|
+
declare const msoAnimAfterEffectHide: MsoAnimAfterEffect.msoAnimAfterEffectHide;
|
|
2254
|
+
declare const msoAnimAfterEffectHideOnNextClick: MsoAnimAfterEffect.msoAnimAfterEffectHideOnNextClick;
|
|
2255
|
+
declare const msoAnimTextUnitEffectMixed: MsoAnimTextUnitEffect.msoAnimTextUnitEffectMixed;
|
|
2256
|
+
declare const msoAnimTextUnitEffectByParagraph: MsoAnimTextUnitEffect.msoAnimTextUnitEffectByParagraph;
|
|
2257
|
+
declare const msoAnimTextUnitEffectByCharacter: MsoAnimTextUnitEffect.msoAnimTextUnitEffectByCharacter;
|
|
2258
|
+
declare const msoAnimTextUnitEffectByWord: MsoAnimTextUnitEffect.msoAnimTextUnitEffectByWord;
|
|
2259
|
+
declare const msoAnimEffectRestartAlways: MsoAnimEffectRestart.msoAnimEffectRestartAlways;
|
|
2260
|
+
declare const msoAnimEffectRestartWhenOff: MsoAnimEffectRestart.msoAnimEffectRestartWhenOff;
|
|
2261
|
+
declare const msoAnimEffectRestartNever: MsoAnimEffectRestart.msoAnimEffectRestartNever;
|
|
2262
|
+
declare const msoAnimEffectAfterFreeze: MsoAnimEffectAfter.msoAnimEffectAfterFreeze;
|
|
2263
|
+
declare const msoAnimEffectAfterRemove: MsoAnimEffectAfter.msoAnimEffectAfterRemove;
|
|
2264
|
+
declare const msoAnimEffectAfterHold: MsoAnimEffectAfter.msoAnimEffectAfterHold;
|
|
2265
|
+
declare const msoAnimEffectAfterTransition: MsoAnimEffectAfter.msoAnimEffectAfterTransition;
|
|
2266
|
+
declare const msoAnimDirectionNone: MsoAnimDirection.msoAnimDirectionNone;
|
|
2267
|
+
declare const msoAnimDirectionUp: MsoAnimDirection.msoAnimDirectionUp;
|
|
2268
|
+
declare const msoAnimDirectionRight: MsoAnimDirection.msoAnimDirectionRight;
|
|
2269
|
+
declare const msoAnimDirectionDown: MsoAnimDirection.msoAnimDirectionDown;
|
|
2270
|
+
declare const msoAnimDirectionLeft: MsoAnimDirection.msoAnimDirectionLeft;
|
|
2271
|
+
declare const msoAnimDirectionOrdinalMask: MsoAnimDirection.msoAnimDirectionOrdinalMask;
|
|
2272
|
+
declare const msoAnimDirectionUpLeft: MsoAnimDirection.msoAnimDirectionUpLeft;
|
|
2273
|
+
declare const msoAnimDirectionUpRight: MsoAnimDirection.msoAnimDirectionUpRight;
|
|
2274
|
+
declare const msoAnimDirectionDownRight: MsoAnimDirection.msoAnimDirectionDownRight;
|
|
2275
|
+
declare const msoAnimDirectionDownLeft: MsoAnimDirection.msoAnimDirectionDownLeft;
|
|
2276
|
+
declare const msoAnimDirectionTop: MsoAnimDirection.msoAnimDirectionTop;
|
|
2277
|
+
declare const msoAnimDirectionBottom: MsoAnimDirection.msoAnimDirectionBottom;
|
|
2278
|
+
declare const msoAnimDirectionTopLeft: MsoAnimDirection.msoAnimDirectionTopLeft;
|
|
2279
|
+
declare const msoAnimDirectionTopRight: MsoAnimDirection.msoAnimDirectionTopRight;
|
|
2280
|
+
declare const msoAnimDirectionBottomRight: MsoAnimDirection.msoAnimDirectionBottomRight;
|
|
2281
|
+
declare const msoAnimDirectionBottomLeft: MsoAnimDirection.msoAnimDirectionBottomLeft;
|
|
2282
|
+
declare const msoAnimDirectionHorizontal: MsoAnimDirection.msoAnimDirectionHorizontal;
|
|
2283
|
+
declare const msoAnimDirectionVertical: MsoAnimDirection.msoAnimDirectionVertical;
|
|
2284
|
+
declare const msoAnimDirectionAcross: MsoAnimDirection.msoAnimDirectionAcross;
|
|
2285
|
+
declare const msoAnimDirectionIn: MsoAnimDirection.msoAnimDirectionIn;
|
|
2286
|
+
declare const msoAnimDirectionOut: MsoAnimDirection.msoAnimDirectionOut;
|
|
2287
|
+
declare const msoAnimDirectionClockwise: MsoAnimDirection.msoAnimDirectionClockwise;
|
|
2288
|
+
declare const msoAnimDirectionCounterclockwise: MsoAnimDirection.msoAnimDirectionCounterclockwise;
|
|
2289
|
+
declare const msoAnimDirectionHorizontalIn: MsoAnimDirection.msoAnimDirectionHorizontalIn;
|
|
2290
|
+
declare const msoAnimDirectionHorizontalOut: MsoAnimDirection.msoAnimDirectionHorizontalOut;
|
|
2291
|
+
declare const msoAnimDirectionVerticalIn: MsoAnimDirection.msoAnimDirectionVerticalIn;
|
|
2292
|
+
declare const msoAnimDirectionVerticalOut: MsoAnimDirection.msoAnimDirectionVerticalOut;
|
|
2293
|
+
declare const msoAnimDirectionSlightly: MsoAnimDirection.msoAnimDirectionSlightly;
|
|
2294
|
+
declare const msoAnimDirectionCenter: MsoAnimDirection.msoAnimDirectionCenter;
|
|
2295
|
+
declare const msoAnimDirectionInSlightly: MsoAnimDirection.msoAnimDirectionInSlightly;
|
|
2296
|
+
declare const msoAnimDirectionInCenter: MsoAnimDirection.msoAnimDirectionInCenter;
|
|
2297
|
+
declare const msoAnimDirectionInBottom: MsoAnimDirection.msoAnimDirectionInBottom;
|
|
2298
|
+
declare const msoAnimDirectionOutSlightly: MsoAnimDirection.msoAnimDirectionOutSlightly;
|
|
2299
|
+
declare const msoAnimDirectionOutCenter: MsoAnimDirection.msoAnimDirectionOutCenter;
|
|
2300
|
+
declare const msoAnimDirectionOutBottom: MsoAnimDirection.msoAnimDirectionOutBottom;
|
|
2301
|
+
declare const msoAnimDirectionFontBold: MsoAnimDirection.msoAnimDirectionFontBold;
|
|
2302
|
+
declare const msoAnimDirectionFontItalic: MsoAnimDirection.msoAnimDirectionFontItalic;
|
|
2303
|
+
declare const msoAnimDirectionFontUnderline: MsoAnimDirection.msoAnimDirectionFontUnderline;
|
|
2304
|
+
declare const msoAnimDirectionFontStrikethrough: MsoAnimDirection.msoAnimDirectionFontStrikethrough;
|
|
2305
|
+
declare const msoAnimDirectionFontShadow: MsoAnimDirection.msoAnimDirectionFontShadow;
|
|
2306
|
+
declare const msoAnimDirectionFontAllCaps: MsoAnimDirection.msoAnimDirectionFontAllCaps;
|
|
2307
|
+
declare const msoAnimDirectionInstant: MsoAnimDirection.msoAnimDirectionInstant;
|
|
2308
|
+
declare const msoAnimDirectionGradual: MsoAnimDirection.msoAnimDirectionGradual;
|
|
2309
|
+
declare const msoAnimDirectionCycleClockwise: MsoAnimDirection.msoAnimDirectionCycleClockwise;
|
|
2310
|
+
declare const msoAnimDirectionCycleCounterclockwise: MsoAnimDirection.msoAnimDirectionCycleCounterclockwise;
|
|
2311
|
+
declare const msoAnimTypeMixed: MsoAnimType.msoAnimTypeMixed;
|
|
2312
|
+
declare const msoAnimTypeNone: MsoAnimType.msoAnimTypeNone;
|
|
2313
|
+
declare const msoAnimTypeMotion: MsoAnimType.msoAnimTypeMotion;
|
|
2314
|
+
declare const msoAnimTypeColor: MsoAnimType.msoAnimTypeColor;
|
|
2315
|
+
declare const msoAnimTypeScale: MsoAnimType.msoAnimTypeScale;
|
|
2316
|
+
declare const msoAnimTypeRotation: MsoAnimType.msoAnimTypeRotation;
|
|
2317
|
+
declare const msoAnimTypeProperty: MsoAnimType.msoAnimTypeProperty;
|
|
2318
|
+
declare const msoAnimTypeCommand: MsoAnimType.msoAnimTypeCommand;
|
|
2319
|
+
declare const msoAnimTypeFilter: MsoAnimType.msoAnimTypeFilter;
|
|
2320
|
+
declare const msoAnimTypeSet: MsoAnimType.msoAnimTypeSet;
|
|
2321
|
+
declare const msoAnimAdditiveAddBase: MsoAnimAdditive.msoAnimAdditiveAddBase;
|
|
2322
|
+
declare const msoAnimAdditiveAddSum: MsoAnimAdditive.msoAnimAdditiveAddSum;
|
|
2323
|
+
declare const msoAnimAccumulateNone: MsoAnimAccumulate.msoAnimAccumulateNone;
|
|
2324
|
+
declare const msoAnimAccumulateAlways: MsoAnimAccumulate.msoAnimAccumulateAlways;
|
|
2325
|
+
declare const msoAnimNone: MsoAnimProperty.msoAnimNone;
|
|
2326
|
+
declare const msoAnimX: MsoAnimProperty.msoAnimX;
|
|
2327
|
+
declare const msoAnimY: MsoAnimProperty.msoAnimY;
|
|
2328
|
+
declare const msoAnimWidth: MsoAnimProperty.msoAnimWidth;
|
|
2329
|
+
declare const msoAnimHeight: MsoAnimProperty.msoAnimHeight;
|
|
2330
|
+
declare const msoAnimOpacity: MsoAnimProperty.msoAnimOpacity;
|
|
2331
|
+
declare const msoAnimRotation: MsoAnimProperty.msoAnimRotation;
|
|
2332
|
+
declare const msoAnimColor: MsoAnimProperty.msoAnimColor;
|
|
2333
|
+
declare const msoAnimVisibility: MsoAnimProperty.msoAnimVisibility;
|
|
2334
|
+
declare const msoAnimTextFontBold: MsoAnimProperty.msoAnimTextFontBold;
|
|
2335
|
+
declare const msoAnimTextFontColor: MsoAnimProperty.msoAnimTextFontColor;
|
|
2336
|
+
declare const msoAnimTextFontEmboss: MsoAnimProperty.msoAnimTextFontEmboss;
|
|
2337
|
+
declare const msoAnimTextFontItalic: MsoAnimProperty.msoAnimTextFontItalic;
|
|
2338
|
+
declare const msoAnimTextFontName: MsoAnimProperty.msoAnimTextFontName;
|
|
2339
|
+
declare const msoAnimTextFontShadow: MsoAnimProperty.msoAnimTextFontShadow;
|
|
2340
|
+
declare const msoAnimTextFontSize: MsoAnimProperty.msoAnimTextFontSize;
|
|
2341
|
+
declare const msoAnimTextFontSubscript: MsoAnimProperty.msoAnimTextFontSubscript;
|
|
2342
|
+
declare const msoAnimTextFontSuperscript: MsoAnimProperty.msoAnimTextFontSuperscript;
|
|
2343
|
+
declare const msoAnimTextFontUnderline: MsoAnimProperty.msoAnimTextFontUnderline;
|
|
2344
|
+
declare const msoAnimTextFontStrikeThrough: MsoAnimProperty.msoAnimTextFontStrikeThrough;
|
|
2345
|
+
declare const msoAnimTextBulletCharacter: MsoAnimProperty.msoAnimTextBulletCharacter;
|
|
2346
|
+
declare const msoAnimTextBulletFontName: MsoAnimProperty.msoAnimTextBulletFontName;
|
|
2347
|
+
declare const msoAnimTextBulletNumber: MsoAnimProperty.msoAnimTextBulletNumber;
|
|
2348
|
+
declare const msoAnimTextBulletColor: MsoAnimProperty.msoAnimTextBulletColor;
|
|
2349
|
+
declare const msoAnimTextBulletRelativeSize: MsoAnimProperty.msoAnimTextBulletRelativeSize;
|
|
2350
|
+
declare const msoAnimTextBulletStyle: MsoAnimProperty.msoAnimTextBulletStyle;
|
|
2351
|
+
declare const msoAnimTextBulletType: MsoAnimProperty.msoAnimTextBulletType;
|
|
2352
|
+
declare const msoAnimShapePictureContrast: MsoAnimProperty.msoAnimShapePictureContrast;
|
|
2353
|
+
declare const msoAnimShapePictureBrightness: MsoAnimProperty.msoAnimShapePictureBrightness;
|
|
2354
|
+
declare const msoAnimShapePictureGamma: MsoAnimProperty.msoAnimShapePictureGamma;
|
|
2355
|
+
declare const msoAnimShapePictureGrayscale: MsoAnimProperty.msoAnimShapePictureGrayscale;
|
|
2356
|
+
declare const msoAnimShapeFillOn: MsoAnimProperty.msoAnimShapeFillOn;
|
|
2357
|
+
declare const msoAnimShapeFillColor: MsoAnimProperty.msoAnimShapeFillColor;
|
|
2358
|
+
declare const msoAnimShapeFillOpacity: MsoAnimProperty.msoAnimShapeFillOpacity;
|
|
2359
|
+
declare const msoAnimShapeFillBackColor: MsoAnimProperty.msoAnimShapeFillBackColor;
|
|
2360
|
+
declare const msoAnimShapeLineOn: MsoAnimProperty.msoAnimShapeLineOn;
|
|
2361
|
+
declare const msoAnimShapeLineColor: MsoAnimProperty.msoAnimShapeLineColor;
|
|
2362
|
+
declare const msoAnimShapeShadowOn: MsoAnimProperty.msoAnimShapeShadowOn;
|
|
2363
|
+
declare const msoAnimShapeShadowType: MsoAnimProperty.msoAnimShapeShadowType;
|
|
2364
|
+
declare const msoAnimShapeShadowColor: MsoAnimProperty.msoAnimShapeShadowColor;
|
|
2365
|
+
declare const msoAnimShapeShadowOpacity: MsoAnimProperty.msoAnimShapeShadowOpacity;
|
|
2366
|
+
declare const msoAnimShapeShadowOffsetX: MsoAnimProperty.msoAnimShapeShadowOffsetX;
|
|
2367
|
+
declare const msoAnimShapeShadowOffsetY: MsoAnimProperty.msoAnimShapeShadowOffsetY;
|
|
2368
|
+
declare const ppAlertsNone: PpAlertLevel.ppAlertsNone;
|
|
2369
|
+
declare const ppAlertsAll: PpAlertLevel.ppAlertsAll;
|
|
2370
|
+
declare const ppRevisionInfoNone: PpRevisionInfo.ppRevisionInfoNone;
|
|
2371
|
+
declare const ppRevisionInfoBaseline: PpRevisionInfo.ppRevisionInfoBaseline;
|
|
2372
|
+
declare const ppRevisionInfoMerged: PpRevisionInfo.ppRevisionInfoMerged;
|
|
2373
|
+
declare const msoAnimCommandTypeEvent: MsoAnimCommandType.msoAnimCommandTypeEvent;
|
|
2374
|
+
declare const msoAnimCommandTypeCall: MsoAnimCommandType.msoAnimCommandTypeCall;
|
|
2375
|
+
declare const msoAnimCommandTypeVerb: MsoAnimCommandType.msoAnimCommandTypeVerb;
|
|
2376
|
+
declare const msoAnimFilterEffectTypeNone: MsoAnimFilterEffectType.msoAnimFilterEffectTypeNone;
|
|
2377
|
+
declare const msoAnimFilterEffectTypeBarn: MsoAnimFilterEffectType.msoAnimFilterEffectTypeBarn;
|
|
2378
|
+
declare const msoAnimFilterEffectTypeBlinds: MsoAnimFilterEffectType.msoAnimFilterEffectTypeBlinds;
|
|
2379
|
+
declare const msoAnimFilterEffectTypeBox: MsoAnimFilterEffectType.msoAnimFilterEffectTypeBox;
|
|
2380
|
+
declare const msoAnimFilterEffectTypeCheckerboard: MsoAnimFilterEffectType.msoAnimFilterEffectTypeCheckerboard;
|
|
2381
|
+
declare const msoAnimFilterEffectTypeCircle: MsoAnimFilterEffectType.msoAnimFilterEffectTypeCircle;
|
|
2382
|
+
declare const msoAnimFilterEffectTypeDiamond: MsoAnimFilterEffectType.msoAnimFilterEffectTypeDiamond;
|
|
2383
|
+
declare const msoAnimFilterEffectTypeDissolve: MsoAnimFilterEffectType.msoAnimFilterEffectTypeDissolve;
|
|
2384
|
+
declare const msoAnimFilterEffectTypeFade: MsoAnimFilterEffectType.msoAnimFilterEffectTypeFade;
|
|
2385
|
+
declare const msoAnimFilterEffectTypeImage: MsoAnimFilterEffectType.msoAnimFilterEffectTypeImage;
|
|
2386
|
+
declare const msoAnimFilterEffectTypePixelate: MsoAnimFilterEffectType.msoAnimFilterEffectTypePixelate;
|
|
2387
|
+
declare const msoAnimFilterEffectTypePlus: MsoAnimFilterEffectType.msoAnimFilterEffectTypePlus;
|
|
2388
|
+
declare const msoAnimFilterEffectTypeRandomBar: MsoAnimFilterEffectType.msoAnimFilterEffectTypeRandomBar;
|
|
2389
|
+
declare const msoAnimFilterEffectTypeSlide: MsoAnimFilterEffectType.msoAnimFilterEffectTypeSlide;
|
|
2390
|
+
declare const msoAnimFilterEffectTypeStretch: MsoAnimFilterEffectType.msoAnimFilterEffectTypeStretch;
|
|
2391
|
+
declare const msoAnimFilterEffectTypeStrips: MsoAnimFilterEffectType.msoAnimFilterEffectTypeStrips;
|
|
2392
|
+
declare const msoAnimFilterEffectTypeWedge: MsoAnimFilterEffectType.msoAnimFilterEffectTypeWedge;
|
|
2393
|
+
declare const msoAnimFilterEffectTypeWheel: MsoAnimFilterEffectType.msoAnimFilterEffectTypeWheel;
|
|
2394
|
+
declare const msoAnimFilterEffectTypeWipe: MsoAnimFilterEffectType.msoAnimFilterEffectTypeWipe;
|
|
2395
|
+
declare const msoAnimFilterEffectSubtypeNone: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeNone;
|
|
2396
|
+
declare const msoAnimFilterEffectSubtypeInVertical: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeInVertical;
|
|
2397
|
+
declare const msoAnimFilterEffectSubtypeOutVertical: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeOutVertical;
|
|
2398
|
+
declare const msoAnimFilterEffectSubtypeInHorizontal: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeInHorizontal;
|
|
2399
|
+
declare const msoAnimFilterEffectSubtypeOutHorizontal: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeOutHorizontal;
|
|
2400
|
+
declare const msoAnimFilterEffectSubtypeHorizontal: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeHorizontal;
|
|
2401
|
+
declare const msoAnimFilterEffectSubtypeVertical: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeVertical;
|
|
2402
|
+
declare const msoAnimFilterEffectSubtypeIn: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeIn;
|
|
2403
|
+
declare const msoAnimFilterEffectSubtypeOut: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeOut;
|
|
2404
|
+
declare const msoAnimFilterEffectSubtypeAcross: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeAcross;
|
|
2405
|
+
declare const msoAnimFilterEffectSubtypeFromLeft: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeFromLeft;
|
|
2406
|
+
declare const msoAnimFilterEffectSubtypeFromRight: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeFromRight;
|
|
2407
|
+
declare const msoAnimFilterEffectSubtypeFromTop: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeFromTop;
|
|
2408
|
+
declare const msoAnimFilterEffectSubtypeFromBottom: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeFromBottom;
|
|
2409
|
+
declare const msoAnimFilterEffectSubtypeDownLeft: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeDownLeft;
|
|
2410
|
+
declare const msoAnimFilterEffectSubtypeUpLeft: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeUpLeft;
|
|
2411
|
+
declare const msoAnimFilterEffectSubtypeDownRight: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeDownRight;
|
|
2412
|
+
declare const msoAnimFilterEffectSubtypeUpRight: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeUpRight;
|
|
2413
|
+
declare const msoAnimFilterEffectSubtypeSpokes1: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeSpokes1;
|
|
2414
|
+
declare const msoAnimFilterEffectSubtypeSpokes2: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeSpokes2;
|
|
2415
|
+
declare const msoAnimFilterEffectSubtypeSpokes3: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeSpokes3;
|
|
2416
|
+
declare const msoAnimFilterEffectSubtypeSpokes4: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeSpokes4;
|
|
2417
|
+
declare const msoAnimFilterEffectSubtypeSpokes8: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeSpokes8;
|
|
2418
|
+
declare const msoAnimFilterEffectSubtypeLeft: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeLeft;
|
|
2419
|
+
declare const msoAnimFilterEffectSubtypeRight: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeRight;
|
|
2420
|
+
declare const msoAnimFilterEffectSubtypeDown: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeDown;
|
|
2421
|
+
declare const msoAnimFilterEffectSubtypeUp: MsoAnimFilterEffectSubtype.msoAnimFilterEffectSubtypeUp;
|
|
2422
|
+
declare const ppRDIComments: PpRemoveDocInfoType.ppRDIComments;
|
|
2423
|
+
declare const ppRDIRemovePersonalInformation: PpRemoveDocInfoType.ppRDIRemovePersonalInformation;
|
|
2424
|
+
declare const ppRDIDocumentProperties: PpRemoveDocInfoType.ppRDIDocumentProperties;
|
|
2425
|
+
declare const ppRDIDocumentWorkspace: PpRemoveDocInfoType.ppRDIDocumentWorkspace;
|
|
2426
|
+
declare const ppRDIInkAnnotations: PpRemoveDocInfoType.ppRDIInkAnnotations;
|
|
2427
|
+
declare const ppRDIPublishPath: PpRemoveDocInfoType.ppRDIPublishPath;
|
|
2428
|
+
declare const ppRDIDocumentServerProperties: PpRemoveDocInfoType.ppRDIDocumentServerProperties;
|
|
2429
|
+
declare const ppRDIDocumentManagementPolicy: PpRemoveDocInfoType.ppRDIDocumentManagementPolicy;
|
|
2430
|
+
declare const ppRDIContentType: PpRemoveDocInfoType.ppRDIContentType;
|
|
2431
|
+
declare const ppRDISlideUpdateInformation: PpRemoveDocInfoType.ppRDISlideUpdateInformation;
|
|
2432
|
+
declare const ppRDIAtMentions: PpRemoveDocInfoType.ppRDIAtMentions;
|
|
2433
|
+
declare const ppRDIAll: PpRemoveDocInfoType.ppRDIAll;
|
|
2434
|
+
declare const ppCheckInMinorVersion: PpCheckInVersionType.ppCheckInMinorVersion;
|
|
2435
|
+
declare const ppCheckInMajorVersion: PpCheckInVersionType.ppCheckInMajorVersion;
|
|
2436
|
+
declare const ppCheckInOverwriteVersion: PpCheckInVersionType.ppCheckInOverwriteVersion;
|
|
2437
|
+
declare const msoClickStateAfterAllAnimations: MsoClickState.msoClickStateAfterAllAnimations;
|
|
2438
|
+
declare const msoClickStateBeforeAutomaticAnimations: MsoClickState.msoClickStateBeforeAutomaticAnimations;
|
|
2439
|
+
declare const ppFixedFormatTypeXPS: PpFixedFormatType.ppFixedFormatTypeXPS;
|
|
2440
|
+
declare const ppFixedFormatTypePDF: PpFixedFormatType.ppFixedFormatTypePDF;
|
|
2441
|
+
declare const ppFixedFormatIntentScreen: PpFixedFormatIntent.ppFixedFormatIntentScreen;
|
|
2442
|
+
declare const ppFixedFormatIntentPrint: PpFixedFormatIntent.ppFixedFormatIntentPrint;
|
|
2443
|
+
declare const xlBackgroundAutomatic: XlBackground.xlBackgroundAutomatic;
|
|
2444
|
+
declare const xlBackgroundOpaque: XlBackground.xlBackgroundOpaque;
|
|
2445
|
+
declare const xlBackgroundTransparent: XlBackground.xlBackgroundTransparent;
|
|
2446
|
+
declare const xlBuiltIn: XlChartGallery.xlBuiltIn;
|
|
2447
|
+
declare const xlUserDefined: XlChartGallery.xlUserDefined;
|
|
2448
|
+
declare const xlAnyGallery: XlChartGallery.xlAnyGallery;
|
|
2449
|
+
declare const xlSides: XlChartPicturePlacement.xlSides;
|
|
2450
|
+
declare const xlEnd: XlChartPicturePlacement.xlEnd;
|
|
2451
|
+
declare const xlEndSides: XlChartPicturePlacement.xlEndSides;
|
|
2452
|
+
declare const xlFront: XlChartPicturePlacement.xlFront;
|
|
2453
|
+
declare const xlFrontSides: XlChartPicturePlacement.xlFrontSides;
|
|
2454
|
+
declare const xlFrontEnd: XlChartPicturePlacement.xlFrontEnd;
|
|
2455
|
+
declare const xlAllFaces: XlChartPicturePlacement.xlAllFaces;
|
|
2456
|
+
declare const xlDataLabelSeparatorDefault: XlDataLabelSeparator.xlDataLabelSeparatorDefault;
|
|
2457
|
+
declare const xlPatternAutomatic: XlPattern.xlPatternAutomatic;
|
|
2458
|
+
declare const xlPatternChecker: XlPattern.xlPatternChecker;
|
|
2459
|
+
declare const xlPatternCrissCross: XlPattern.xlPatternCrissCross;
|
|
2460
|
+
declare const xlPatternDown: XlPattern.xlPatternDown;
|
|
2461
|
+
declare const xlPatternGray16: XlPattern.xlPatternGray16;
|
|
2462
|
+
declare const xlPatternGray25: XlPattern.xlPatternGray25;
|
|
2463
|
+
declare const xlPatternGray50: XlPattern.xlPatternGray50;
|
|
2464
|
+
declare const xlPatternGray75: XlPattern.xlPatternGray75;
|
|
2465
|
+
declare const xlPatternGray8: XlPattern.xlPatternGray8;
|
|
2466
|
+
declare const xlPatternGrid: XlPattern.xlPatternGrid;
|
|
2467
|
+
declare const xlPatternHorizontal: XlPattern.xlPatternHorizontal;
|
|
2468
|
+
declare const xlPatternLightDown: XlPattern.xlPatternLightDown;
|
|
2469
|
+
declare const xlPatternLightHorizontal: XlPattern.xlPatternLightHorizontal;
|
|
2470
|
+
declare const xlPatternLightUp: XlPattern.xlPatternLightUp;
|
|
2471
|
+
declare const xlPatternLightVertical: XlPattern.xlPatternLightVertical;
|
|
2472
|
+
declare const xlPatternNone: XlPattern.xlPatternNone;
|
|
2473
|
+
declare const xlPatternSemiGray75: XlPattern.xlPatternSemiGray75;
|
|
2474
|
+
declare const xlPatternSolid: XlPattern.xlPatternSolid;
|
|
2475
|
+
declare const xlPatternUp: XlPattern.xlPatternUp;
|
|
2476
|
+
declare const xlPatternVertical: XlPattern.xlPatternVertical;
|
|
2477
|
+
declare const xlPatternLinearGradient: XlPattern.xlPatternLinearGradient;
|
|
2478
|
+
declare const xlPatternRectangularGradient: XlPattern.xlPatternRectangularGradient;
|
|
2479
|
+
declare const xlPrinter: XlPictureAppearance.xlPrinter;
|
|
2480
|
+
declare const xlScreen: XlPictureAppearance.xlScreen;
|
|
2481
|
+
declare const xlBitmap: XlCopyPictureFormat.xlBitmap;
|
|
2482
|
+
declare const xlPicture: XlCopyPictureFormat.xlPicture;
|
|
2483
|
+
declare const rgbAliceBlue: XlRgbColor.rgbAliceBlue;
|
|
2484
|
+
declare const rgbAntiqueWhite: XlRgbColor.rgbAntiqueWhite;
|
|
2485
|
+
declare const rgbAqua: XlRgbColor.rgbAqua;
|
|
2486
|
+
declare const rgbAquamarine: XlRgbColor.rgbAquamarine;
|
|
2487
|
+
declare const rgbAzure: XlRgbColor.rgbAzure;
|
|
2488
|
+
declare const rgbBeige: XlRgbColor.rgbBeige;
|
|
2489
|
+
declare const rgbBisque: XlRgbColor.rgbBisque;
|
|
2490
|
+
declare const rgbBlack: XlRgbColor.rgbBlack;
|
|
2491
|
+
declare const rgbBlanchedAlmond: XlRgbColor.rgbBlanchedAlmond;
|
|
2492
|
+
declare const rgbBlue: XlRgbColor.rgbBlue;
|
|
2493
|
+
declare const rgbBlueViolet: XlRgbColor.rgbBlueViolet;
|
|
2494
|
+
declare const rgbBrown: XlRgbColor.rgbBrown;
|
|
2495
|
+
declare const rgbBurlyWood: XlRgbColor.rgbBurlyWood;
|
|
2496
|
+
declare const rgbCadetBlue: XlRgbColor.rgbCadetBlue;
|
|
2497
|
+
declare const rgbChartreuse: XlRgbColor.rgbChartreuse;
|
|
2498
|
+
declare const rgbCoral: XlRgbColor.rgbCoral;
|
|
2499
|
+
declare const rgbCornflowerBlue: XlRgbColor.rgbCornflowerBlue;
|
|
2500
|
+
declare const rgbCornsilk: XlRgbColor.rgbCornsilk;
|
|
2501
|
+
declare const rgbCrimson: XlRgbColor.rgbCrimson;
|
|
2502
|
+
declare const rgbDarkBlue: XlRgbColor.rgbDarkBlue;
|
|
2503
|
+
declare const rgbDarkCyan: XlRgbColor.rgbDarkCyan;
|
|
2504
|
+
declare const rgbDarkGoldenrod: XlRgbColor.rgbDarkGoldenrod;
|
|
2505
|
+
declare const rgbDarkGreen: XlRgbColor.rgbDarkGreen;
|
|
2506
|
+
declare const rgbDarkGray: XlRgbColor.rgbDarkGray;
|
|
2507
|
+
declare const rgbDarkGrey: XlRgbColor.rgbDarkGrey;
|
|
2508
|
+
declare const rgbDarkKhaki: XlRgbColor.rgbDarkKhaki;
|
|
2509
|
+
declare const rgbDarkMagenta: XlRgbColor.rgbDarkMagenta;
|
|
2510
|
+
declare const rgbDarkOliveGreen: XlRgbColor.rgbDarkOliveGreen;
|
|
2511
|
+
declare const rgbDarkOrange: XlRgbColor.rgbDarkOrange;
|
|
2512
|
+
declare const rgbDarkOrchid: XlRgbColor.rgbDarkOrchid;
|
|
2513
|
+
declare const rgbDarkRed: XlRgbColor.rgbDarkRed;
|
|
2514
|
+
declare const rgbDarkSalmon: XlRgbColor.rgbDarkSalmon;
|
|
2515
|
+
declare const rgbDarkSeaGreen: XlRgbColor.rgbDarkSeaGreen;
|
|
2516
|
+
declare const rgbDarkSlateBlue: XlRgbColor.rgbDarkSlateBlue;
|
|
2517
|
+
declare const rgbDarkSlateGray: XlRgbColor.rgbDarkSlateGray;
|
|
2518
|
+
declare const rgbDarkSlateGrey: XlRgbColor.rgbDarkSlateGrey;
|
|
2519
|
+
declare const rgbDarkTurquoise: XlRgbColor.rgbDarkTurquoise;
|
|
2520
|
+
declare const rgbDarkViolet: XlRgbColor.rgbDarkViolet;
|
|
2521
|
+
declare const rgbDeepPink: XlRgbColor.rgbDeepPink;
|
|
2522
|
+
declare const rgbDeepSkyBlue: XlRgbColor.rgbDeepSkyBlue;
|
|
2523
|
+
declare const rgbDimGray: XlRgbColor.rgbDimGray;
|
|
2524
|
+
declare const rgbDimGrey: XlRgbColor.rgbDimGrey;
|
|
2525
|
+
declare const rgbDodgerBlue: XlRgbColor.rgbDodgerBlue;
|
|
2526
|
+
declare const rgbFireBrick: XlRgbColor.rgbFireBrick;
|
|
2527
|
+
declare const rgbFloralWhite: XlRgbColor.rgbFloralWhite;
|
|
2528
|
+
declare const rgbForestGreen: XlRgbColor.rgbForestGreen;
|
|
2529
|
+
declare const rgbFuchsia: XlRgbColor.rgbFuchsia;
|
|
2530
|
+
declare const rgbGainsboro: XlRgbColor.rgbGainsboro;
|
|
2531
|
+
declare const rgbGhostWhite: XlRgbColor.rgbGhostWhite;
|
|
2532
|
+
declare const rgbGold: XlRgbColor.rgbGold;
|
|
2533
|
+
declare const rgbGoldenrod: XlRgbColor.rgbGoldenrod;
|
|
2534
|
+
declare const rgbGray: XlRgbColor.rgbGray;
|
|
2535
|
+
declare const rgbGreen: XlRgbColor.rgbGreen;
|
|
2536
|
+
declare const rgbGrey: XlRgbColor.rgbGrey;
|
|
2537
|
+
declare const rgbGreenYellow: XlRgbColor.rgbGreenYellow;
|
|
2538
|
+
declare const rgbHoneydew: XlRgbColor.rgbHoneydew;
|
|
2539
|
+
declare const rgbHotPink: XlRgbColor.rgbHotPink;
|
|
2540
|
+
declare const rgbIndianRed: XlRgbColor.rgbIndianRed;
|
|
2541
|
+
declare const rgbIndigo: XlRgbColor.rgbIndigo;
|
|
2542
|
+
declare const rgbIvory: XlRgbColor.rgbIvory;
|
|
2543
|
+
declare const rgbKhaki: XlRgbColor.rgbKhaki;
|
|
2544
|
+
declare const rgbLavender: XlRgbColor.rgbLavender;
|
|
2545
|
+
declare const rgbLavenderBlush: XlRgbColor.rgbLavenderBlush;
|
|
2546
|
+
declare const rgbLawnGreen: XlRgbColor.rgbLawnGreen;
|
|
2547
|
+
declare const rgbLemonChiffon: XlRgbColor.rgbLemonChiffon;
|
|
2548
|
+
declare const rgbLightBlue: XlRgbColor.rgbLightBlue;
|
|
2549
|
+
declare const rgbLightCoral: XlRgbColor.rgbLightCoral;
|
|
2550
|
+
declare const rgbLightCyan: XlRgbColor.rgbLightCyan;
|
|
2551
|
+
declare const rgbLightGoldenrodYellow: XlRgbColor.rgbLightGoldenrodYellow;
|
|
2552
|
+
declare const rgbLightGray: XlRgbColor.rgbLightGray;
|
|
2553
|
+
declare const rgbLightGreen: XlRgbColor.rgbLightGreen;
|
|
2554
|
+
declare const rgbLightGrey: XlRgbColor.rgbLightGrey;
|
|
2555
|
+
declare const rgbLightPink: XlRgbColor.rgbLightPink;
|
|
2556
|
+
declare const rgbLightSalmon: XlRgbColor.rgbLightSalmon;
|
|
2557
|
+
declare const rgbLightSeaGreen: XlRgbColor.rgbLightSeaGreen;
|
|
2558
|
+
declare const rgbLightSkyBlue: XlRgbColor.rgbLightSkyBlue;
|
|
2559
|
+
declare const rgbLightSlateGray: XlRgbColor.rgbLightSlateGray;
|
|
2560
|
+
declare const rgbLightSlateGrey: XlRgbColor.rgbLightSlateGrey;
|
|
2561
|
+
declare const rgbLightSteelBlue: XlRgbColor.rgbLightSteelBlue;
|
|
2562
|
+
declare const rgbLightYellow: XlRgbColor.rgbLightYellow;
|
|
2563
|
+
declare const rgbLime: XlRgbColor.rgbLime;
|
|
2564
|
+
declare const rgbLimeGreen: XlRgbColor.rgbLimeGreen;
|
|
2565
|
+
declare const rgbLinen: XlRgbColor.rgbLinen;
|
|
2566
|
+
declare const rgbMaroon: XlRgbColor.rgbMaroon;
|
|
2567
|
+
declare const rgbMediumAquamarine: XlRgbColor.rgbMediumAquamarine;
|
|
2568
|
+
declare const rgbMediumBlue: XlRgbColor.rgbMediumBlue;
|
|
2569
|
+
declare const rgbMediumOrchid: XlRgbColor.rgbMediumOrchid;
|
|
2570
|
+
declare const rgbMediumPurple: XlRgbColor.rgbMediumPurple;
|
|
2571
|
+
declare const rgbMediumSeaGreen: XlRgbColor.rgbMediumSeaGreen;
|
|
2572
|
+
declare const rgbMediumSlateBlue: XlRgbColor.rgbMediumSlateBlue;
|
|
2573
|
+
declare const rgbMediumSpringGreen: XlRgbColor.rgbMediumSpringGreen;
|
|
2574
|
+
declare const rgbMediumTurquoise: XlRgbColor.rgbMediumTurquoise;
|
|
2575
|
+
declare const rgbMediumVioletRed: XlRgbColor.rgbMediumVioletRed;
|
|
2576
|
+
declare const rgbMidnightBlue: XlRgbColor.rgbMidnightBlue;
|
|
2577
|
+
declare const rgbMintCream: XlRgbColor.rgbMintCream;
|
|
2578
|
+
declare const rgbMistyRose: XlRgbColor.rgbMistyRose;
|
|
2579
|
+
declare const rgbMoccasin: XlRgbColor.rgbMoccasin;
|
|
2580
|
+
declare const rgbNavajoWhite: XlRgbColor.rgbNavajoWhite;
|
|
2581
|
+
declare const rgbNavy: XlRgbColor.rgbNavy;
|
|
2582
|
+
declare const rgbNavyBlue: XlRgbColor.rgbNavyBlue;
|
|
2583
|
+
declare const rgbOldLace: XlRgbColor.rgbOldLace;
|
|
2584
|
+
declare const rgbOlive: XlRgbColor.rgbOlive;
|
|
2585
|
+
declare const rgbOliveDrab: XlRgbColor.rgbOliveDrab;
|
|
2586
|
+
declare const rgbOrange: XlRgbColor.rgbOrange;
|
|
2587
|
+
declare const rgbOrangeRed: XlRgbColor.rgbOrangeRed;
|
|
2588
|
+
declare const rgbOrchid: XlRgbColor.rgbOrchid;
|
|
2589
|
+
declare const rgbPaleGoldenrod: XlRgbColor.rgbPaleGoldenrod;
|
|
2590
|
+
declare const rgbPaleGreen: XlRgbColor.rgbPaleGreen;
|
|
2591
|
+
declare const rgbPaleTurquoise: XlRgbColor.rgbPaleTurquoise;
|
|
2592
|
+
declare const rgbPaleVioletRed: XlRgbColor.rgbPaleVioletRed;
|
|
2593
|
+
declare const rgbPapayaWhip: XlRgbColor.rgbPapayaWhip;
|
|
2594
|
+
declare const rgbPeachPuff: XlRgbColor.rgbPeachPuff;
|
|
2595
|
+
declare const rgbPeru: XlRgbColor.rgbPeru;
|
|
2596
|
+
declare const rgbPink: XlRgbColor.rgbPink;
|
|
2597
|
+
declare const rgbPlum: XlRgbColor.rgbPlum;
|
|
2598
|
+
declare const rgbPowderBlue: XlRgbColor.rgbPowderBlue;
|
|
2599
|
+
declare const rgbPurple: XlRgbColor.rgbPurple;
|
|
2600
|
+
declare const rgbRed: XlRgbColor.rgbRed;
|
|
2601
|
+
declare const rgbRosyBrown: XlRgbColor.rgbRosyBrown;
|
|
2602
|
+
declare const rgbRoyalBlue: XlRgbColor.rgbRoyalBlue;
|
|
2603
|
+
declare const rgbSalmon: XlRgbColor.rgbSalmon;
|
|
2604
|
+
declare const rgbSandyBrown: XlRgbColor.rgbSandyBrown;
|
|
2605
|
+
declare const rgbSeaGreen: XlRgbColor.rgbSeaGreen;
|
|
2606
|
+
declare const rgbSeashell: XlRgbColor.rgbSeashell;
|
|
2607
|
+
declare const rgbSienna: XlRgbColor.rgbSienna;
|
|
2608
|
+
declare const rgbSilver: XlRgbColor.rgbSilver;
|
|
2609
|
+
declare const rgbSkyBlue: XlRgbColor.rgbSkyBlue;
|
|
2610
|
+
declare const rgbSlateBlue: XlRgbColor.rgbSlateBlue;
|
|
2611
|
+
declare const rgbSlateGray: XlRgbColor.rgbSlateGray;
|
|
2612
|
+
declare const rgbSlateGrey: XlRgbColor.rgbSlateGrey;
|
|
2613
|
+
declare const rgbSnow: XlRgbColor.rgbSnow;
|
|
2614
|
+
declare const rgbSpringGreen: XlRgbColor.rgbSpringGreen;
|
|
2615
|
+
declare const rgbSteelBlue: XlRgbColor.rgbSteelBlue;
|
|
2616
|
+
declare const rgbTan: XlRgbColor.rgbTan;
|
|
2617
|
+
declare const rgbTeal: XlRgbColor.rgbTeal;
|
|
2618
|
+
declare const rgbThistle: XlRgbColor.rgbThistle;
|
|
2619
|
+
declare const rgbTomato: XlRgbColor.rgbTomato;
|
|
2620
|
+
declare const rgbTurquoise: XlRgbColor.rgbTurquoise;
|
|
2621
|
+
declare const rgbYellow: XlRgbColor.rgbYellow;
|
|
2622
|
+
declare const rgbYellowGreen: XlRgbColor.rgbYellowGreen;
|
|
2623
|
+
declare const rgbViolet: XlRgbColor.rgbViolet;
|
|
2624
|
+
declare const rgbWheat: XlRgbColor.rgbWheat;
|
|
2625
|
+
declare const rgbWhite: XlRgbColor.rgbWhite;
|
|
2626
|
+
declare const rgbWhiteSmoke: XlRgbColor.rgbWhiteSmoke;
|
|
2627
|
+
declare const xlContinuous: XlLineStyle.xlContinuous;
|
|
2628
|
+
declare const xlDash: XlLineStyle.xlDash;
|
|
2629
|
+
declare const xlDashDot: XlLineStyle.xlDashDot;
|
|
2630
|
+
declare const xlDashDotDot: XlLineStyle.xlDashDotDot;
|
|
2631
|
+
declare const xlDot: XlLineStyle.xlDot;
|
|
2632
|
+
declare const xlDouble: XlLineStyle.xlDouble;
|
|
2633
|
+
declare const xlSlantDashDot: XlLineStyle.xlSlantDashDot;
|
|
2634
|
+
declare const xlLineStyleNone: XlLineStyle.xlLineStyleNone;
|
|
2635
|
+
//declare const xlDownward: XlOrientation.xlDownward;
|
|
2636
|
+
//declare const xlHorizontal: XlOrientation.xlHorizontal;
|
|
2637
|
+
//declare const xlUpward: XlOrientation.xlUpward;
|
|
2638
|
+
//declare const xlVertical: XlOrientation.xlVertical;
|
|
2639
|
+
declare const ppResampleMediaProfileCustom: PpResampleMediaProfile.ppResampleMediaProfileCustom;
|
|
2640
|
+
declare const ppResampleMediaProfileSmall: PpResampleMediaProfile.ppResampleMediaProfileSmall;
|
|
2641
|
+
declare const ppResampleMediaProfileSmaller: PpResampleMediaProfile.ppResampleMediaProfileSmaller;
|
|
2642
|
+
declare const ppResampleMediaProfileSmallest: PpResampleMediaProfile.ppResampleMediaProfileSmallest;
|
|
2643
|
+
declare const ppMediaTaskStatusNone: PpMediaTaskStatus.ppMediaTaskStatusNone;
|
|
2644
|
+
declare const ppMediaTaskStatusInProgress: PpMediaTaskStatus.ppMediaTaskStatusInProgress;
|
|
2645
|
+
declare const ppMediaTaskStatusQueued: PpMediaTaskStatus.ppMediaTaskStatusQueued;
|
|
2646
|
+
declare const ppMediaTaskStatusDone: PpMediaTaskStatus.ppMediaTaskStatusDone;
|
|
2647
|
+
declare const ppMediaTaskStatusFailed: PpMediaTaskStatus.ppMediaTaskStatusFailed;
|
|
2648
|
+
declare const ppPlaying: PpPlayerState.ppPlaying;
|
|
2649
|
+
declare const ppPaused: PpPlayerState.ppPaused;
|
|
2650
|
+
declare const ppStopped: PpPlayerState.ppStopped;
|
|
2651
|
+
declare const ppNotReady: PpPlayerState.ppNotReady;
|
|
2652
|
+
declare const ppProtectedViewCloseNormal: PpProtectedViewCloseReason.ppProtectedViewCloseNormal;
|
|
2653
|
+
declare const ppProtectedViewCloseEdit: PpProtectedViewCloseReason.ppProtectedViewCloseEdit;
|
|
2654
|
+
declare const ppProtectedViewCloseForced: PpProtectedViewCloseReason.ppProtectedViewCloseForced;
|
|
2655
|
+
declare const ppHorizontalGuide: PpGuideOrientation.ppHorizontalGuide;
|
|
2656
|
+
declare const ppVerticalGuide: PpGuideOrientation.ppVerticalGuide;
|