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
package/dtstype/ppt.d.ts
ADDED
|
@@ -0,0 +1,3224 @@
|
|
|
1
|
+
/// <reference path="base.d.ts" />
|
|
2
|
+
/// <reference path="mso.d.ts" />
|
|
3
|
+
/// <reference path="enum/ppt_enum.d.ts" />
|
|
4
|
+
|
|
5
|
+
interface Collection{
|
|
6
|
+
readonly Count: number;
|
|
7
|
+
}
|
|
8
|
+
interface Application{
|
|
9
|
+
readonly Presentations: Presentations;
|
|
10
|
+
readonly Windows: DocumentWindows;
|
|
11
|
+
readonly Dialogs: object | any;
|
|
12
|
+
readonly ActiveWindow: DocumentWindow;
|
|
13
|
+
readonly ActivePresentation: Presentation;
|
|
14
|
+
readonly SlideShowWindows: SlideShowWindows;
|
|
15
|
+
readonly CommandBars: CommandBars;
|
|
16
|
+
readonly Path: string;
|
|
17
|
+
readonly Name: string;
|
|
18
|
+
Caption: string;
|
|
19
|
+
readonly Assistant: Assistant;
|
|
20
|
+
readonly FileSearch: FileSearch;
|
|
21
|
+
readonly FileFind: Find;
|
|
22
|
+
readonly Build: string;
|
|
23
|
+
readonly Version: string;
|
|
24
|
+
readonly OperatingSystem: string;
|
|
25
|
+
readonly ActivePrinter: string;
|
|
26
|
+
readonly Creator: number;
|
|
27
|
+
readonly AddIns: AddIns;
|
|
28
|
+
Help(HelpFile?: string, ContextID?: number): void;
|
|
29
|
+
Quit(): void;
|
|
30
|
+
Run(MacroName: string, safeArrayOfParams: any[]): any;
|
|
31
|
+
PPFileDialog(Type: PpFileDialogType): object | any;
|
|
32
|
+
Left: number;
|
|
33
|
+
Top: number;
|
|
34
|
+
Width: number;
|
|
35
|
+
Height: number;
|
|
36
|
+
WindowState: PpWindowState;
|
|
37
|
+
Visible: MsoTriState;
|
|
38
|
+
readonly Active: MsoTriState;
|
|
39
|
+
Activate(): void;
|
|
40
|
+
readonly AnswerWizard: AnswerWizard;
|
|
41
|
+
readonly COMAddIns: COMAddIns;
|
|
42
|
+
readonly ProductCode: string;
|
|
43
|
+
readonly DefaultWebOptions: DefaultWebOptions;
|
|
44
|
+
readonly LanguageSettings: LanguageSettings;
|
|
45
|
+
readonly MsoDebugOptions: MsoDebugOptions;
|
|
46
|
+
ShowWindowsInTaskbar: MsoTriState;
|
|
47
|
+
readonly Marker: object | any;
|
|
48
|
+
FeatureInstall: MsoFeatureInstall;
|
|
49
|
+
GetOptionFlag(Option: number, Persist?: boolean): boolean;
|
|
50
|
+
SetOptionFlag(Option: number, State: boolean, Persist?: boolean): void;
|
|
51
|
+
FileDialog(Type: MsoFileDialogType): FileDialog;
|
|
52
|
+
DisplayGridLines: MsoTriState;
|
|
53
|
+
AutomationSecurity: MsoAutomationSecurity;
|
|
54
|
+
readonly NewPresentation: NewFile;
|
|
55
|
+
DisplayAlerts: PpAlertLevel;
|
|
56
|
+
ShowStartupDialog: MsoTriState;
|
|
57
|
+
SetPerfMarker(Marker: number): void;
|
|
58
|
+
readonly AutoCorrect: AutoCorrect;
|
|
59
|
+
readonly Options: Options;
|
|
60
|
+
LaunchPublishSlidesDialog(SlideLibraryUrl: string): void;
|
|
61
|
+
LaunchSendToPPTDialog(SlideUrls: any): void;
|
|
62
|
+
DisplayDocumentInformationPanel: boolean;
|
|
63
|
+
readonly Assistance: Assistance;
|
|
64
|
+
readonly ActiveEncryptionSession: number;
|
|
65
|
+
readonly FileConverters: FileConverters;
|
|
66
|
+
readonly SmartArtLayouts: SmartArtLayouts;
|
|
67
|
+
readonly SmartArtQuickStyles: SmartArtQuickStyles;
|
|
68
|
+
readonly SmartArtColors: SmartArtColors;
|
|
69
|
+
readonly ProtectedViewWindows: ProtectedViewWindows;
|
|
70
|
+
readonly ActiveProtectedViewWindow: ProtectedViewWindow;
|
|
71
|
+
readonly IsSandboxed: boolean;
|
|
72
|
+
readonly ResampleMediaTasks: ResampleMediaTasks;
|
|
73
|
+
StartNewUndoEntry(): void;
|
|
74
|
+
FileValidation: MsoFileValidationMode;
|
|
75
|
+
OpenThemeFile(themeFileName: string): Theme;
|
|
76
|
+
ChartDataPointTrack: boolean;
|
|
77
|
+
DisplayGuides: MsoTriState;
|
|
78
|
+
readonly DataPrivacyOptions: DataPrivacyOptions;
|
|
79
|
+
readonly SensitivityLabelPolicy: SensitivityLabelPolicy;
|
|
80
|
+
}
|
|
81
|
+
interface Global{
|
|
82
|
+
readonly ActivePresentation: Presentation;
|
|
83
|
+
readonly ActiveWindow: DocumentWindow;
|
|
84
|
+
readonly AddIns: AddIns;
|
|
85
|
+
readonly Application: Application;
|
|
86
|
+
readonly Assistant: Assistant;
|
|
87
|
+
readonly Dialogs: object | any;
|
|
88
|
+
readonly Presentations: Presentations;
|
|
89
|
+
readonly SlideShowWindows: SlideShowWindows;
|
|
90
|
+
readonly Windows: DocumentWindows;
|
|
91
|
+
readonly CommandBars: CommandBars;
|
|
92
|
+
readonly AnswerWizard: AnswerWizard;
|
|
93
|
+
readonly FileConverters: FileConverters;
|
|
94
|
+
readonly ProtectedViewWindows: ProtectedViewWindows;
|
|
95
|
+
readonly ActiveProtectedViewWindow: ProtectedViewWindow;
|
|
96
|
+
readonly IsSandboxed: boolean;
|
|
97
|
+
}
|
|
98
|
+
interface ColorFormat{
|
|
99
|
+
readonly Application: object | any;
|
|
100
|
+
readonly Creator: number;
|
|
101
|
+
readonly Parent: object | any;
|
|
102
|
+
RGB: number;
|
|
103
|
+
readonly Type: MsoColorType;
|
|
104
|
+
SchemeColor: PpColorSchemeIndex;
|
|
105
|
+
TintAndShade: number;
|
|
106
|
+
ObjectThemeColor: MsoThemeColorIndex;
|
|
107
|
+
Brightness: number;
|
|
108
|
+
}
|
|
109
|
+
interface SlideShowWindow{
|
|
110
|
+
readonly Application: Application;
|
|
111
|
+
readonly Parent: object | any;
|
|
112
|
+
readonly View: SlideShowView;
|
|
113
|
+
readonly Presentation: Presentation;
|
|
114
|
+
readonly IsFullScreen: MsoTriState;
|
|
115
|
+
Left: number;
|
|
116
|
+
Top: number;
|
|
117
|
+
Width: number;
|
|
118
|
+
Height: number;
|
|
119
|
+
readonly Active: MsoTriState;
|
|
120
|
+
Activate(): void;
|
|
121
|
+
readonly SlideNavigation: SlideNavigation;
|
|
122
|
+
}
|
|
123
|
+
interface Selection{
|
|
124
|
+
readonly Application: Application;
|
|
125
|
+
readonly Parent: object | any;
|
|
126
|
+
Cut(): void;
|
|
127
|
+
Copy(): void;
|
|
128
|
+
Delete(): void;
|
|
129
|
+
Unselect(): void;
|
|
130
|
+
readonly Type: PpSelectionType;
|
|
131
|
+
readonly SlideRange: SlideRange;
|
|
132
|
+
readonly ShapeRange: ShapeRange;
|
|
133
|
+
readonly TextRange: TextRange;
|
|
134
|
+
readonly ChildShapeRange: ShapeRange;
|
|
135
|
+
readonly HasChildShapeRange: boolean;
|
|
136
|
+
readonly TextRange2: TextRange2;
|
|
137
|
+
}
|
|
138
|
+
interface DocumentWindows{
|
|
139
|
+
readonly Application: Application;
|
|
140
|
+
readonly Parent: object | any;
|
|
141
|
+
Item(Index: number): DocumentWindow;
|
|
142
|
+
Arrange(arrangeStyle?: PpArrangeStyle): void;
|
|
143
|
+
}
|
|
144
|
+
interface SlideShowWindows{
|
|
145
|
+
readonly Application: Application;
|
|
146
|
+
readonly Parent: object | any;
|
|
147
|
+
Item(Index: number): SlideShowWindow;
|
|
148
|
+
}
|
|
149
|
+
interface DocumentWindow{
|
|
150
|
+
readonly Application: Application;
|
|
151
|
+
readonly Parent: object | any;
|
|
152
|
+
readonly Selection: Selection;
|
|
153
|
+
readonly View: View;
|
|
154
|
+
readonly Presentation: Presentation;
|
|
155
|
+
ViewType: PpViewType;
|
|
156
|
+
BlackAndWhite: MsoTriState;
|
|
157
|
+
readonly Active: MsoTriState;
|
|
158
|
+
WindowState: PpWindowState;
|
|
159
|
+
readonly Caption: string;
|
|
160
|
+
Left: number;
|
|
161
|
+
Top: number;
|
|
162
|
+
Width: number;
|
|
163
|
+
Height: number;
|
|
164
|
+
FitToPage(): void;
|
|
165
|
+
Activate(): void;
|
|
166
|
+
LargeScroll(Down?: number, Up?: number, ToRight?: number, ToLeft?: number): void;
|
|
167
|
+
SmallScroll(Down?: number, Up?: number, ToRight?: number, ToLeft?: number): void;
|
|
168
|
+
NewWindow(): DocumentWindow;
|
|
169
|
+
Close(): void;
|
|
170
|
+
readonly ActivePane: Pane;
|
|
171
|
+
readonly Panes: Panes;
|
|
172
|
+
SplitVertical: number;
|
|
173
|
+
SplitHorizontal: number;
|
|
174
|
+
RangeFromPoint(X: number, Y: number): object | any;
|
|
175
|
+
PointsToScreenPixelsX(Points: number): number;
|
|
176
|
+
PointsToScreenPixelsY(Points: number): number;
|
|
177
|
+
ScrollIntoView(Left: number, Top: number, Width: number, Height: number, Start?: MsoTriState): void;
|
|
178
|
+
IsSectionExpanded(sectionIndex: number): boolean;
|
|
179
|
+
ExpandSection(sectionIndex: number, Expand: boolean): void;
|
|
180
|
+
ShowInsertAppDialog(Filter: number): void;
|
|
181
|
+
}
|
|
182
|
+
interface View{
|
|
183
|
+
readonly Application: Application;
|
|
184
|
+
readonly Parent: object | any;
|
|
185
|
+
readonly Type: PpViewType;
|
|
186
|
+
Zoom: number;
|
|
187
|
+
Paste(): void;
|
|
188
|
+
Slide: object | any;
|
|
189
|
+
GotoSlide(Index: number): void;
|
|
190
|
+
DisplaySlideMiniature: MsoTriState;
|
|
191
|
+
ZoomToFit: MsoTriState;
|
|
192
|
+
PasteSpecial(DataType?: PpPasteDataType, DisplayAsIcon?: MsoTriState, IconFileName?: string, IconIndex?: number, IconLabel?: string, Link?: MsoTriState): void;
|
|
193
|
+
readonly PrintOptions: PrintOptions;
|
|
194
|
+
PrintOut(From?: number, To?: number, PrintToFile?: string, Copies?: number, Collate?: MsoTriState): void;
|
|
195
|
+
Player(ShapeId: any): Player;
|
|
196
|
+
readonly MediaControlsVisible: MsoTriState;
|
|
197
|
+
readonly MediaControlsLeft: number;
|
|
198
|
+
readonly MediaControlsTop: number;
|
|
199
|
+
readonly MediaControlsWidth: number;
|
|
200
|
+
readonly MediaControlsHeight: number;
|
|
201
|
+
}
|
|
202
|
+
interface SlideShowView{
|
|
203
|
+
readonly Application: Application;
|
|
204
|
+
readonly Parent: object | any;
|
|
205
|
+
readonly Zoom: number;
|
|
206
|
+
readonly Slide: Slide;
|
|
207
|
+
PointerType: PpSlideShowPointerType;
|
|
208
|
+
State: PpSlideShowState;
|
|
209
|
+
AcceleratorsEnabled: MsoTriState;
|
|
210
|
+
readonly PresentationElapsedTime: number;
|
|
211
|
+
SlideElapsedTime: number;
|
|
212
|
+
readonly LastSlideViewed: Slide;
|
|
213
|
+
readonly AdvanceMode: PpSlideShowAdvanceMode;
|
|
214
|
+
readonly PointerColor: ColorFormat;
|
|
215
|
+
readonly IsNamedShow: MsoTriState;
|
|
216
|
+
readonly SlideShowName: string;
|
|
217
|
+
DrawLine(BeginX: number, BeginY: number, EndX: number, EndY: number): void;
|
|
218
|
+
EraseDrawing(): void;
|
|
219
|
+
First(): void;
|
|
220
|
+
Last(): void;
|
|
221
|
+
Next(): void;
|
|
222
|
+
Previous(): void;
|
|
223
|
+
GotoSlide(Index: number, ResetSlide?: MsoTriState): void;
|
|
224
|
+
GotoNamedShow(SlideShowName: string): void;
|
|
225
|
+
EndNamedShow(): void;
|
|
226
|
+
ResetSlideTime(): void;
|
|
227
|
+
Exit(): void;
|
|
228
|
+
InstallTracker(pTracker: MouseTracker, Presenter: MsoTriState): void;
|
|
229
|
+
readonly CurrentShowPosition: number;
|
|
230
|
+
GotoClick(Index: number): void;
|
|
231
|
+
GetClickIndex(): number;
|
|
232
|
+
GetClickCount(): number;
|
|
233
|
+
FirstAnimationIsAutomatic(): boolean;
|
|
234
|
+
Player(ShapeId: any): Player;
|
|
235
|
+
readonly MediaControlsVisible: MsoTriState;
|
|
236
|
+
readonly MediaControlsLeft: number;
|
|
237
|
+
readonly MediaControlsTop: number;
|
|
238
|
+
readonly MediaControlsWidth: number;
|
|
239
|
+
readonly MediaControlsHeight: number;
|
|
240
|
+
LaserPointerEnabled: boolean;
|
|
241
|
+
}
|
|
242
|
+
interface SlideShowSettings{
|
|
243
|
+
readonly Application: Application;
|
|
244
|
+
readonly Parent: object | any;
|
|
245
|
+
readonly PointerColor: ColorFormat;
|
|
246
|
+
readonly NamedSlideShows: NamedSlideShows;
|
|
247
|
+
StartingSlide: number;
|
|
248
|
+
EndingSlide: number;
|
|
249
|
+
AdvanceMode: PpSlideShowAdvanceMode;
|
|
250
|
+
Run(): SlideShowWindow;
|
|
251
|
+
LoopUntilStopped: MsoTriState;
|
|
252
|
+
ShowType: PpSlideShowType;
|
|
253
|
+
ShowWithNarration: MsoTriState;
|
|
254
|
+
ShowWithAnimation: MsoTriState;
|
|
255
|
+
SlideShowName: string;
|
|
256
|
+
RangeType: PpSlideShowRangeType;
|
|
257
|
+
ShowScrollbar: MsoTriState;
|
|
258
|
+
ShowPresenterView: MsoTriState;
|
|
259
|
+
ShowMediaControls: MsoTriState;
|
|
260
|
+
}
|
|
261
|
+
interface NamedSlideShows{
|
|
262
|
+
readonly Application: Application;
|
|
263
|
+
readonly Parent: object | any;
|
|
264
|
+
Item(Index: any): NamedSlideShow;
|
|
265
|
+
Add(Name: string, safeArrayOfSlideIDs: any): NamedSlideShow;
|
|
266
|
+
}
|
|
267
|
+
interface NamedSlideShow{
|
|
268
|
+
readonly Application: Application;
|
|
269
|
+
readonly Parent: object | any;
|
|
270
|
+
readonly Name: string;
|
|
271
|
+
Delete(): void;
|
|
272
|
+
readonly SlideIDs: any;
|
|
273
|
+
readonly Count: number;
|
|
274
|
+
}
|
|
275
|
+
interface PrintOptions{
|
|
276
|
+
readonly Application: Application;
|
|
277
|
+
PrintColorType: PpPrintColorType;
|
|
278
|
+
Collate: MsoTriState;
|
|
279
|
+
FitToPage: MsoTriState;
|
|
280
|
+
FrameSlides: MsoTriState;
|
|
281
|
+
NumberOfCopies: number;
|
|
282
|
+
OutputType: PpPrintOutputType;
|
|
283
|
+
readonly Parent: object | any;
|
|
284
|
+
PrintHiddenSlides: MsoTriState;
|
|
285
|
+
PrintInBackground: MsoTriState;
|
|
286
|
+
RangeType: PpPrintRangeType;
|
|
287
|
+
readonly Ranges: PrintRanges;
|
|
288
|
+
PrintFontsAsGraphics: MsoTriState;
|
|
289
|
+
SlideShowName: string;
|
|
290
|
+
ActivePrinter: string;
|
|
291
|
+
HandoutOrder: PpPrintHandoutOrder;
|
|
292
|
+
PrintComments: MsoTriState;
|
|
293
|
+
sectionIndex: number;
|
|
294
|
+
HighQuality: MsoTriState;
|
|
295
|
+
}
|
|
296
|
+
interface PrintRanges{
|
|
297
|
+
Add(Start: number, End: number): PrintRange;
|
|
298
|
+
readonly Application: Application;
|
|
299
|
+
ClearAll(): void;
|
|
300
|
+
Item(Index: number): PrintRange;
|
|
301
|
+
readonly Parent: object | any;
|
|
302
|
+
}
|
|
303
|
+
interface PrintRange{
|
|
304
|
+
readonly Application: Application;
|
|
305
|
+
readonly Parent: object | any;
|
|
306
|
+
readonly Start: number;
|
|
307
|
+
readonly End: number;
|
|
308
|
+
Delete(): void;
|
|
309
|
+
}
|
|
310
|
+
interface AddIns{
|
|
311
|
+
readonly Application: Application;
|
|
312
|
+
readonly Parent: object | any;
|
|
313
|
+
Item(Index: any): AddIn;
|
|
314
|
+
Add(FileName: string): AddIn;
|
|
315
|
+
Remove(Index: any): void;
|
|
316
|
+
}
|
|
317
|
+
interface AddIn{
|
|
318
|
+
readonly Application: Application;
|
|
319
|
+
readonly Parent: object | any;
|
|
320
|
+
readonly FullName: string;
|
|
321
|
+
readonly Name: string;
|
|
322
|
+
readonly Path: string;
|
|
323
|
+
Registered: MsoTriState;
|
|
324
|
+
AutoLoad: MsoTriState;
|
|
325
|
+
Loaded: MsoTriState;
|
|
326
|
+
DisplayAlerts: MsoTriState;
|
|
327
|
+
readonly RegisteredInHKLM: MsoTriState;
|
|
328
|
+
}
|
|
329
|
+
interface Presentations{
|
|
330
|
+
readonly Application: Application;
|
|
331
|
+
readonly Parent: object | any;
|
|
332
|
+
Item(Index: any): Presentation;
|
|
333
|
+
Add(WithWindow?: MsoTriState): Presentation;
|
|
334
|
+
OpenOld(FileName: string, ReadOnly?: MsoTriState, Untitled?: MsoTriState, WithWindow?: MsoTriState): Presentation;
|
|
335
|
+
Open(FileName: string, ReadOnly?: MsoTriState, Untitled?: MsoTriState, WithWindow?: MsoTriState): Presentation;
|
|
336
|
+
CheckOut(FileName: string): void;
|
|
337
|
+
CanCheckOut(FileName: string): boolean;
|
|
338
|
+
Open2007(FileName: string, ReadOnly?: MsoTriState, Untitled?: MsoTriState, WithWindow?: MsoTriState, OpenAndRepair?: MsoTriState): Presentation;
|
|
339
|
+
}
|
|
340
|
+
interface PresEvents{
|
|
341
|
+
}
|
|
342
|
+
interface Hyperlinks{
|
|
343
|
+
readonly Application: Application;
|
|
344
|
+
readonly Parent: object | any;
|
|
345
|
+
Item(Index: number): Hyperlink;
|
|
346
|
+
}
|
|
347
|
+
interface Hyperlink{
|
|
348
|
+
readonly Application: Application;
|
|
349
|
+
readonly Parent: object | any;
|
|
350
|
+
readonly Type: MsoHyperlinkType;
|
|
351
|
+
Address: string;
|
|
352
|
+
SubAddress: string;
|
|
353
|
+
AddToFavorites(): void;
|
|
354
|
+
EmailSubject: string;
|
|
355
|
+
ScreenTip: string;
|
|
356
|
+
TextToDisplay: string;
|
|
357
|
+
ShowAndReturn: MsoTriState;
|
|
358
|
+
Follow(): void;
|
|
359
|
+
CreateNewDocument(FileName: string, EditNow: MsoTriState, Overwrite: MsoTriState): void;
|
|
360
|
+
Delete(): void;
|
|
361
|
+
}
|
|
362
|
+
interface PageSetup{
|
|
363
|
+
readonly Application: Application;
|
|
364
|
+
readonly Parent: object | any;
|
|
365
|
+
FirstSlideNumber: number;
|
|
366
|
+
SlideHeight: number;
|
|
367
|
+
SlideWidth: number;
|
|
368
|
+
SlideSize: PpSlideSizeType;
|
|
369
|
+
NotesOrientation: MsoOrientation;
|
|
370
|
+
SlideOrientation: MsoOrientation;
|
|
371
|
+
}
|
|
372
|
+
interface Fonts{
|
|
373
|
+
readonly Application: Application;
|
|
374
|
+
readonly Parent: object | any;
|
|
375
|
+
Item(Index: any): Font;
|
|
376
|
+
Replace(Original: string, Replacement: string): void;
|
|
377
|
+
}
|
|
378
|
+
interface ExtraColors{
|
|
379
|
+
readonly Application: Application;
|
|
380
|
+
readonly Parent: object | any;
|
|
381
|
+
Item(Index: number): number;
|
|
382
|
+
Add(Type: number): void;
|
|
383
|
+
Clear(): void;
|
|
384
|
+
}
|
|
385
|
+
interface Slides{
|
|
386
|
+
readonly Application: Application;
|
|
387
|
+
readonly Parent: object | any;
|
|
388
|
+
Item(Index: any): Slide;
|
|
389
|
+
FindBySlideID(SlideID: number): Slide;
|
|
390
|
+
Add(Index: number, Layout: PpSlideLayout): Slide;
|
|
391
|
+
InsertFromFile(FileName: string, Index: number, SlideStart?: number, SlideEnd?: number): number;
|
|
392
|
+
Range(Index?: any): SlideRange;
|
|
393
|
+
Paste(Index?: number): SlideRange;
|
|
394
|
+
AddSlide(Index: number, pCustomLayout: CustomLayout): Slide;
|
|
395
|
+
}
|
|
396
|
+
interface Slide{
|
|
397
|
+
readonly Application: Application;
|
|
398
|
+
readonly Parent: object | any;
|
|
399
|
+
readonly Shapes: Shapes;
|
|
400
|
+
readonly HeadersFooters: HeadersFooters;
|
|
401
|
+
readonly SlideShowTransition: SlideShowTransition;
|
|
402
|
+
ColorScheme: ColorScheme;
|
|
403
|
+
readonly Background: ShapeRange;
|
|
404
|
+
Name: string;
|
|
405
|
+
readonly SlideID: number;
|
|
406
|
+
readonly PrintSteps: number;
|
|
407
|
+
Select(): void;
|
|
408
|
+
Cut(): void;
|
|
409
|
+
Copy(): void;
|
|
410
|
+
Layout: PpSlideLayout;
|
|
411
|
+
Delete(): void;
|
|
412
|
+
readonly Tags: Tags;
|
|
413
|
+
readonly SlideIndex: number;
|
|
414
|
+
readonly SlideNumber: number;
|
|
415
|
+
DisplayMasterShapes: MsoTriState;
|
|
416
|
+
FollowMasterBackground: MsoTriState;
|
|
417
|
+
readonly NotesPage: SlideRange;
|
|
418
|
+
readonly Master: Master;
|
|
419
|
+
readonly Hyperlinks: Hyperlinks;
|
|
420
|
+
Export(FileName: string, FilterName: string, ScaleWidth?: number, ScaleHeight?: number): void;
|
|
421
|
+
readonly Scripts: Scripts;
|
|
422
|
+
readonly Comments: Comments;
|
|
423
|
+
Design: Design;
|
|
424
|
+
MoveTo(toPos: number): void;
|
|
425
|
+
readonly TimeLine: TimeLine;
|
|
426
|
+
ApplyTemplate(FileName: string): void;
|
|
427
|
+
readonly SectionNumber: number;
|
|
428
|
+
CustomLayout: CustomLayout;
|
|
429
|
+
ApplyTheme(themeName: string): void;
|
|
430
|
+
readonly ThemeColorScheme: ThemeColorScheme;
|
|
431
|
+
ApplyThemeColorScheme(themeColorSchemeName: string): void;
|
|
432
|
+
BackgroundStyle: MsoBackgroundStyleIndex;
|
|
433
|
+
readonly CustomerData: CustomerData;
|
|
434
|
+
PublishSlides(SlideLibraryUrl: string, Overwrite?: boolean, UseSlideOrder?: boolean): void;
|
|
435
|
+
MoveToSectionStart(toSection: number): void;
|
|
436
|
+
readonly sectionIndex: number;
|
|
437
|
+
readonly HasNotesPage: MsoTriState;
|
|
438
|
+
ApplyTemplate2(FileName: string, VariantGUID: string): void;
|
|
439
|
+
}
|
|
440
|
+
interface SlideRange{
|
|
441
|
+
readonly Application: Application;
|
|
442
|
+
readonly Parent: object | any;
|
|
443
|
+
readonly Shapes: Shapes;
|
|
444
|
+
readonly HeadersFooters: HeadersFooters;
|
|
445
|
+
readonly SlideShowTransition: SlideShowTransition;
|
|
446
|
+
ColorScheme: ColorScheme;
|
|
447
|
+
readonly Background: ShapeRange;
|
|
448
|
+
Name: string;
|
|
449
|
+
readonly SlideID: number;
|
|
450
|
+
readonly PrintSteps: number;
|
|
451
|
+
Select(): void;
|
|
452
|
+
Cut(): void;
|
|
453
|
+
Copy(): void;
|
|
454
|
+
Layout: PpSlideLayout;
|
|
455
|
+
Delete(): void;
|
|
456
|
+
readonly Tags: Tags;
|
|
457
|
+
readonly SlideIndex: number;
|
|
458
|
+
readonly SlideNumber: number;
|
|
459
|
+
DisplayMasterShapes: MsoTriState;
|
|
460
|
+
FollowMasterBackground: MsoTriState;
|
|
461
|
+
readonly NotesPage: SlideRange;
|
|
462
|
+
readonly Master: Master;
|
|
463
|
+
readonly Hyperlinks: Hyperlinks;
|
|
464
|
+
Export(FileName: string, FilterName: string, ScaleWidth?: number, ScaleHeight?: number): void;
|
|
465
|
+
Item(Index: any): Slide;
|
|
466
|
+
readonly Count: number;
|
|
467
|
+
readonly Scripts: Scripts;
|
|
468
|
+
readonly Comments: Comments;
|
|
469
|
+
Design: Design;
|
|
470
|
+
MoveTo(toPos: number): void;
|
|
471
|
+
readonly TimeLine: TimeLine;
|
|
472
|
+
ApplyTemplate(FileName: string): void;
|
|
473
|
+
readonly SectionNumber: number;
|
|
474
|
+
CustomLayout: CustomLayout;
|
|
475
|
+
ApplyTheme(themeName: string): void;
|
|
476
|
+
readonly ThemeColorScheme: ThemeColorScheme;
|
|
477
|
+
ApplyThemeColorScheme(themeColorSchemeName: string): void;
|
|
478
|
+
BackgroundStyle: MsoBackgroundStyleIndex;
|
|
479
|
+
readonly CustomerData: CustomerData;
|
|
480
|
+
PublishSlides(SlideLibraryUrl: string, Overwrite?: boolean, UseSlideOrder?: boolean): void;
|
|
481
|
+
MoveToSectionStart(toSection: number): void;
|
|
482
|
+
readonly sectionIndex: number;
|
|
483
|
+
readonly HasNotesPage: MsoTriState;
|
|
484
|
+
ApplyTemplate2(FileName: string, VariantGUID: string): void;
|
|
485
|
+
}
|
|
486
|
+
interface Master{
|
|
487
|
+
readonly Application: Application;
|
|
488
|
+
readonly Parent: object | any;
|
|
489
|
+
readonly Shapes: Shapes;
|
|
490
|
+
readonly HeadersFooters: HeadersFooters;
|
|
491
|
+
ColorScheme: ColorScheme;
|
|
492
|
+
readonly Background: ShapeRange;
|
|
493
|
+
Name: string;
|
|
494
|
+
Delete(): void;
|
|
495
|
+
readonly Height: number;
|
|
496
|
+
readonly Width: number;
|
|
497
|
+
readonly TextStyles: TextStyles;
|
|
498
|
+
readonly Hyperlinks: Hyperlinks;
|
|
499
|
+
readonly Scripts: Scripts;
|
|
500
|
+
readonly Design: Design;
|
|
501
|
+
readonly TimeLine: TimeLine;
|
|
502
|
+
readonly SlideShowTransition: SlideShowTransition;
|
|
503
|
+
readonly CustomLayouts: CustomLayouts;
|
|
504
|
+
readonly Theme: OfficeTheme;
|
|
505
|
+
ApplyTheme(themeName: string): void;
|
|
506
|
+
BackgroundStyle: MsoBackgroundStyleIndex;
|
|
507
|
+
readonly CustomerData: CustomerData;
|
|
508
|
+
readonly Guides: Guides;
|
|
509
|
+
}
|
|
510
|
+
interface SldEvents{
|
|
511
|
+
}
|
|
512
|
+
interface ColorSchemes{
|
|
513
|
+
readonly Application: Application;
|
|
514
|
+
readonly Parent: object | any;
|
|
515
|
+
Item(Index: number): ColorScheme;
|
|
516
|
+
Add(Scheme?: ColorScheme): ColorScheme;
|
|
517
|
+
}
|
|
518
|
+
interface ColorScheme{
|
|
519
|
+
readonly Application: Application;
|
|
520
|
+
readonly Parent: object | any;
|
|
521
|
+
Colors(SchemeColor: PpColorSchemeIndex): RGBColor;
|
|
522
|
+
Delete(): void;
|
|
523
|
+
}
|
|
524
|
+
interface RGBColor{
|
|
525
|
+
readonly Application: Application;
|
|
526
|
+
readonly Parent: object | any;
|
|
527
|
+
RGB: number;
|
|
528
|
+
}
|
|
529
|
+
interface SlideShowTransition{
|
|
530
|
+
readonly Application: Application;
|
|
531
|
+
readonly Parent: object | any;
|
|
532
|
+
AdvanceOnClick: MsoTriState;
|
|
533
|
+
AdvanceOnTime: MsoTriState;
|
|
534
|
+
AdvanceTime: number;
|
|
535
|
+
EntryEffect: PpEntryEffect;
|
|
536
|
+
Hidden: MsoTriState;
|
|
537
|
+
LoopSoundUntilNext: MsoTriState;
|
|
538
|
+
readonly SoundEffect: SoundEffect;
|
|
539
|
+
Speed: PpTransitionSpeed;
|
|
540
|
+
Duration: number;
|
|
541
|
+
}
|
|
542
|
+
interface SoundEffect{
|
|
543
|
+
readonly Application: Application;
|
|
544
|
+
readonly Parent: object | any;
|
|
545
|
+
Name: string;
|
|
546
|
+
Type: PpSoundEffectType;
|
|
547
|
+
ImportFromFile(FileName: string): void;
|
|
548
|
+
Play(): void;
|
|
549
|
+
}
|
|
550
|
+
interface SoundFormat{
|
|
551
|
+
Play(): void;
|
|
552
|
+
Import(FileName: string): void;
|
|
553
|
+
Export(FileName: string): PpSoundFormatType;
|
|
554
|
+
readonly Type: PpSoundFormatType;
|
|
555
|
+
readonly SourceFullName: string;
|
|
556
|
+
}
|
|
557
|
+
interface HeadersFooters{
|
|
558
|
+
readonly Application: Application;
|
|
559
|
+
readonly Parent: object | any;
|
|
560
|
+
readonly DateAndTime: HeaderFooter;
|
|
561
|
+
readonly SlideNumber: HeaderFooter;
|
|
562
|
+
readonly Header: HeaderFooter;
|
|
563
|
+
readonly Footer: HeaderFooter;
|
|
564
|
+
DisplayOnTitleSlide: MsoTriState;
|
|
565
|
+
Clear(): void;
|
|
566
|
+
}
|
|
567
|
+
interface Shapes{
|
|
568
|
+
readonly Application: object | any;
|
|
569
|
+
readonly Creator: number;
|
|
570
|
+
readonly Parent: object | any;
|
|
571
|
+
readonly Count: number;
|
|
572
|
+
Item(Index: any): Shape;
|
|
573
|
+
AddCallout(Type: MsoCalloutType, Left: number, Top: number, Width: number, Height: number): Shape;
|
|
574
|
+
AddConnector(Type: MsoConnectorType, BeginX: number, BeginY: number, EndX: number, EndY: number): Shape;
|
|
575
|
+
AddCurve(SafeArrayOfPoints: any): Shape;
|
|
576
|
+
AddLabel(Orientation: MsoTextOrientation, Left: number, Top: number, Width: number, Height: number): Shape;
|
|
577
|
+
AddLine(BeginX: number, BeginY: number, EndX: number, EndY: number): Shape;
|
|
578
|
+
AddPicture(FileName: string, LinkToFile: MsoTriState, SaveWithDocument: MsoTriState, Left: number, Top: number, Width?: number, Height?: number): Shape;
|
|
579
|
+
AddPolyline(SafeArrayOfPoints: any): Shape;
|
|
580
|
+
AddShape(Type: MsoAutoShapeType, Left: number, Top: number, Width: number, Height: number): Shape;
|
|
581
|
+
AddTextEffect(PresetTextEffect: MsoPresetTextEffect, Text: string, FontName: string, FontSize: number, FontBold: MsoTriState, FontItalic: MsoTriState, Left: number, Top: number): Shape;
|
|
582
|
+
AddTextbox(Orientation: MsoTextOrientation, Left: number, Top: number, Width: number, Height: number): Shape;
|
|
583
|
+
BuildFreeform(EditingType: MsoEditingType, X1: number, Y1: number): FreeformBuilder;
|
|
584
|
+
SelectAll(): void;
|
|
585
|
+
Range(Index?: any): ShapeRange;
|
|
586
|
+
readonly HasTitle: MsoTriState;
|
|
587
|
+
AddTitle(): Shape;
|
|
588
|
+
readonly Title: Shape;
|
|
589
|
+
readonly Placeholders: Placeholders;
|
|
590
|
+
AddOLEObject(Left?: number, Top?: number, Width?: number, Height?: number, ClassName?: string, FileName?: string, DisplayAsIcon?: MsoTriState, IconFileName?: string, IconIndex?: number, IconLabel?: string, Link?: MsoTriState): Shape;
|
|
591
|
+
AddComment(Left?: number, Top?: number, Width?: number, Height?: number): Shape;
|
|
592
|
+
AddPlaceholder(Type: PpPlaceholderType, Left?: number, Top?: number, Width?: number, Height?: number): Shape;
|
|
593
|
+
AddMediaObject(FileName: string, Left?: number, Top?: number, Width?: number, Height?: number): Shape;
|
|
594
|
+
Paste(): ShapeRange;
|
|
595
|
+
AddTable(NumRows: number, NumColumns: number, Left?: number, Top?: number, Width?: number, Height?: number): Shape;
|
|
596
|
+
PasteSpecial(DataType?: PpPasteDataType, DisplayAsIcon?: MsoTriState, IconFileName?: string, IconIndex?: number, IconLabel?: string, Link?: MsoTriState): ShapeRange;
|
|
597
|
+
AddDiagram(Type: MsoDiagramType, Left: number, Top: number, Width: number, Height: number): Shape;
|
|
598
|
+
AddCanvas(Left: number, Top: number, Width: number, Height: number): Shape;
|
|
599
|
+
AddChart(Type?: XlChartType, Left?: number, Top?: number, Width?: number, Height?: number): Shape;
|
|
600
|
+
AddMediaObject2(FileName: string, LinkToFile?: MsoTriState, SaveWithDocument?: MsoTriState, Left?: number, Top?: number, Width?: number, Height?: number): Shape;
|
|
601
|
+
AddMediaObjectFromEmbedTag(EmbedTag: string, Left?: number, Top?: number, Width?: number, Height?: number): Shape;
|
|
602
|
+
AddSmartArt(Layout: SmartArtLayout, Left?: number, Top?: number, Width?: number, Height?: number): Shape;
|
|
603
|
+
AddChart2(Style?: number, Type?: XlChartType, Left?: number, Top?: number, Width?: number, Height?: number, NewLayout?: boolean): Shape;
|
|
604
|
+
AddPicture2(FileName: string, LinkToFile: MsoTriState, SaveWithDocument: MsoTriState, Left: number, Top: number, Width?: number, Height?: number, compress?: MsoPictureCompress): Shape;
|
|
605
|
+
AddInkShapeFromXML(InkXML: string, Left: number, Top: number, Width?: number, Height?: number): Shape;
|
|
606
|
+
Add3DModel(FileName: string, LinkToFile: MsoTriState, SaveWithDocument: MsoTriState, Left: number, Top: number, Width?: number, Height?: number): Shape;
|
|
607
|
+
}
|
|
608
|
+
interface Placeholders{
|
|
609
|
+
readonly Application: Application;
|
|
610
|
+
readonly Parent: object | any;
|
|
611
|
+
Item(Index: number): Shape;
|
|
612
|
+
FindByName(Index: any): Shape;
|
|
613
|
+
}
|
|
614
|
+
interface PlaceholderFormat{
|
|
615
|
+
readonly Application: Application;
|
|
616
|
+
readonly Parent: object | any;
|
|
617
|
+
readonly Type: PpPlaceholderType;
|
|
618
|
+
Name: string;
|
|
619
|
+
readonly ContainedType: MsoShapeType;
|
|
620
|
+
readonly Position: number;
|
|
621
|
+
}
|
|
622
|
+
interface FreeformBuilder{
|
|
623
|
+
readonly Application: object | any;
|
|
624
|
+
readonly Creator: number;
|
|
625
|
+
readonly Parent: object | any;
|
|
626
|
+
AddNodes(SegmentType: MsoSegmentType, EditingType: MsoEditingType, X1: number, Y1: number, X2?: number, Y2?: number, X3?: number, Y3?: number): void;
|
|
627
|
+
ConvertToShape(): Shape;
|
|
628
|
+
}
|
|
629
|
+
interface Shape{
|
|
630
|
+
readonly Application: object | any;
|
|
631
|
+
readonly Creator: number;
|
|
632
|
+
readonly Parent: object | any;
|
|
633
|
+
Apply(): void;
|
|
634
|
+
Delete(): void;
|
|
635
|
+
Flip(FlipCmd: MsoFlipCmd): void;
|
|
636
|
+
IncrementLeft(Increment: number): void;
|
|
637
|
+
IncrementRotation(Increment: number): void;
|
|
638
|
+
IncrementTop(Increment: number): void;
|
|
639
|
+
PickUp(): void;
|
|
640
|
+
RerouteConnections(): void;
|
|
641
|
+
ScaleHeight(Factor: number, RelativeToOriginalSize: MsoTriState, fScale?: MsoScaleFrom): void;
|
|
642
|
+
ScaleWidth(Factor: number, RelativeToOriginalSize: MsoTriState, fScale?: MsoScaleFrom): void;
|
|
643
|
+
SetShapesDefaultProperties(): void;
|
|
644
|
+
Ungroup(): ShapeRange;
|
|
645
|
+
ZOrder(ZOrderCmd: MsoZOrderCmd): void;
|
|
646
|
+
readonly Adjustments: Adjustments;
|
|
647
|
+
AutoShapeType: MsoAutoShapeType;
|
|
648
|
+
BlackWhiteMode: MsoBlackWhiteMode;
|
|
649
|
+
readonly Callout: CalloutFormat;
|
|
650
|
+
readonly ConnectionSiteCount: number;
|
|
651
|
+
readonly Connector: MsoTriState;
|
|
652
|
+
readonly ConnectorFormat: ConnectorFormat;
|
|
653
|
+
readonly Fill: FillFormat;
|
|
654
|
+
readonly GroupItems: GroupShapes;
|
|
655
|
+
Height: number;
|
|
656
|
+
readonly HorizontalFlip: MsoTriState;
|
|
657
|
+
Left: number;
|
|
658
|
+
readonly Line: LineFormat;
|
|
659
|
+
LockAspectRatio: MsoTriState;
|
|
660
|
+
Name: string;
|
|
661
|
+
readonly Nodes: ShapeNodes;
|
|
662
|
+
Rotation: number;
|
|
663
|
+
readonly PictureFormat: PictureFormat;
|
|
664
|
+
readonly Shadow: ShadowFormat;
|
|
665
|
+
readonly TextEffect: TextEffectFormat;
|
|
666
|
+
readonly TextFrame: TextFrame;
|
|
667
|
+
readonly ThreeD: ThreeDFormat;
|
|
668
|
+
Top: number;
|
|
669
|
+
readonly Type: MsoShapeType;
|
|
670
|
+
readonly VerticalFlip: MsoTriState;
|
|
671
|
+
readonly Vertices: any;
|
|
672
|
+
Visible: MsoTriState;
|
|
673
|
+
Width: number;
|
|
674
|
+
readonly ZOrderPosition: number;
|
|
675
|
+
readonly OLEFormat: OLEFormat;
|
|
676
|
+
readonly LinkFormat: LinkFormat;
|
|
677
|
+
readonly PlaceholderFormat: PlaceholderFormat;
|
|
678
|
+
readonly AnimationSettings: AnimationSettings;
|
|
679
|
+
readonly ActionSettings: ActionSettings;
|
|
680
|
+
readonly Tags: Tags;
|
|
681
|
+
Cut(): void;
|
|
682
|
+
Copy(): void;
|
|
683
|
+
Select(Replace?: MsoTriState): void;
|
|
684
|
+
readonly MediaType: PpMediaType;
|
|
685
|
+
readonly HasTextFrame: MsoTriState;
|
|
686
|
+
readonly SoundFormat: SoundFormat;
|
|
687
|
+
readonly Script: Script;
|
|
688
|
+
AlternativeText: string;
|
|
689
|
+
readonly HasTable: MsoTriState;
|
|
690
|
+
readonly Table: Table;
|
|
691
|
+
Export(PathName: string, Filter: PpShapeFormat, ScaleWidth?: number, ScaleHeight?: number, ExportMode?: PpExportMode): void;
|
|
692
|
+
readonly HasDiagram: MsoTriState;
|
|
693
|
+
readonly Diagram: Diagram;
|
|
694
|
+
readonly HasDiagramNode: MsoTriState;
|
|
695
|
+
readonly DiagramNode: DiagramNode;
|
|
696
|
+
readonly Child: MsoTriState;
|
|
697
|
+
readonly ParentGroup: Shape;
|
|
698
|
+
readonly CanvasItems: CanvasShapes;
|
|
699
|
+
readonly Id: number;
|
|
700
|
+
CanvasCropLeft(Increment: number): void;
|
|
701
|
+
CanvasCropTop(Increment: number): void;
|
|
702
|
+
CanvasCropRight(Increment: number): void;
|
|
703
|
+
CanvasCropBottom(Increment: number): void;
|
|
704
|
+
RTF: string;
|
|
705
|
+
readonly CustomerData: CustomerData;
|
|
706
|
+
readonly TextFrame2: TextFrame2;
|
|
707
|
+
readonly HasChart: MsoTriState;
|
|
708
|
+
ShapeStyle: MsoShapeStyleIndex;
|
|
709
|
+
BackgroundStyle: MsoBackgroundStyleIndex;
|
|
710
|
+
readonly SoftEdge: SoftEdgeFormat;
|
|
711
|
+
readonly Glow: GlowFormat;
|
|
712
|
+
readonly Reflection: ReflectionFormat;
|
|
713
|
+
readonly Chart: Chart;
|
|
714
|
+
readonly HasSmartArt: MsoTriState;
|
|
715
|
+
readonly SmartArt: SmartArt;
|
|
716
|
+
ConvertTextToSmartArt(Layout: SmartArtLayout): void;
|
|
717
|
+
Title: string;
|
|
718
|
+
readonly MediaFormat: MediaFormat;
|
|
719
|
+
PickupAnimation(): void;
|
|
720
|
+
ApplyAnimation(): void;
|
|
721
|
+
UpgradeMedia(): void;
|
|
722
|
+
IsNarration: MsoTriState;
|
|
723
|
+
readonly InkXML: string;
|
|
724
|
+
readonly HasInkXML: MsoTriState;
|
|
725
|
+
readonly HasSectionZoom: MsoTriState;
|
|
726
|
+
GraphicStyle: MsoGraphicStyleIndex;
|
|
727
|
+
readonly Model3D: Model3DFormat;
|
|
728
|
+
Decorative: MsoTriState;
|
|
729
|
+
ConvertInkToText(): string;
|
|
730
|
+
Locked: MsoTriState;
|
|
731
|
+
}
|
|
732
|
+
interface ShapeRange{
|
|
733
|
+
readonly Application: object | any;
|
|
734
|
+
readonly Creator: number;
|
|
735
|
+
readonly Parent: object | any;
|
|
736
|
+
Apply(): void;
|
|
737
|
+
Delete(): void;
|
|
738
|
+
Flip(FlipCmd: MsoFlipCmd): void;
|
|
739
|
+
IncrementLeft(Increment: number): void;
|
|
740
|
+
IncrementRotation(Increment: number): void;
|
|
741
|
+
IncrementTop(Increment: number): void;
|
|
742
|
+
PickUp(): void;
|
|
743
|
+
RerouteConnections(): void;
|
|
744
|
+
ScaleHeight(Factor: number, RelativeToOriginalSize: MsoTriState, fScale?: MsoScaleFrom): void;
|
|
745
|
+
ScaleWidth(Factor: number, RelativeToOriginalSize: MsoTriState, fScale?: MsoScaleFrom): void;
|
|
746
|
+
SetShapesDefaultProperties(): void;
|
|
747
|
+
Ungroup(): ShapeRange;
|
|
748
|
+
ZOrder(ZOrderCmd: MsoZOrderCmd): void;
|
|
749
|
+
readonly Adjustments: Adjustments;
|
|
750
|
+
AutoShapeType: MsoAutoShapeType;
|
|
751
|
+
BlackWhiteMode: MsoBlackWhiteMode;
|
|
752
|
+
readonly Callout: CalloutFormat;
|
|
753
|
+
readonly ConnectionSiteCount: number;
|
|
754
|
+
readonly Connector: MsoTriState;
|
|
755
|
+
readonly ConnectorFormat: ConnectorFormat;
|
|
756
|
+
readonly Fill: FillFormat;
|
|
757
|
+
readonly GroupItems: GroupShapes;
|
|
758
|
+
Height: number;
|
|
759
|
+
readonly HorizontalFlip: MsoTriState;
|
|
760
|
+
Left: number;
|
|
761
|
+
readonly Line: LineFormat;
|
|
762
|
+
LockAspectRatio: MsoTriState;
|
|
763
|
+
Name: string;
|
|
764
|
+
readonly Nodes: ShapeNodes;
|
|
765
|
+
Rotation: number;
|
|
766
|
+
readonly PictureFormat: PictureFormat;
|
|
767
|
+
readonly Shadow: ShadowFormat;
|
|
768
|
+
readonly TextEffect: TextEffectFormat;
|
|
769
|
+
readonly TextFrame: TextFrame;
|
|
770
|
+
readonly ThreeD: ThreeDFormat;
|
|
771
|
+
Top: number;
|
|
772
|
+
readonly Type: MsoShapeType;
|
|
773
|
+
readonly VerticalFlip: MsoTriState;
|
|
774
|
+
readonly Vertices: any;
|
|
775
|
+
Visible: MsoTriState;
|
|
776
|
+
Width: number;
|
|
777
|
+
readonly ZOrderPosition: number;
|
|
778
|
+
readonly OLEFormat: OLEFormat;
|
|
779
|
+
readonly LinkFormat: LinkFormat;
|
|
780
|
+
readonly PlaceholderFormat: PlaceholderFormat;
|
|
781
|
+
readonly AnimationSettings: AnimationSettings;
|
|
782
|
+
readonly ActionSettings: ActionSettings;
|
|
783
|
+
readonly Tags: Tags;
|
|
784
|
+
Cut(): void;
|
|
785
|
+
Copy(): void;
|
|
786
|
+
Select(Replace?: MsoTriState): void;
|
|
787
|
+
readonly MediaType: PpMediaType;
|
|
788
|
+
readonly HasTextFrame: MsoTriState;
|
|
789
|
+
readonly SoundFormat: SoundFormat;
|
|
790
|
+
Item(Index: any): Shape;
|
|
791
|
+
readonly Count: number;
|
|
792
|
+
Group(): Shape;
|
|
793
|
+
Regroup(): Shape;
|
|
794
|
+
Align(AlignCmd: MsoAlignCmd, RelativeTo: MsoTriState): void;
|
|
795
|
+
Distribute(DistributeCmd: MsoDistributeCmd, RelativeTo: MsoTriState): void;
|
|
796
|
+
readonly Script: Script;
|
|
797
|
+
AlternativeText: string;
|
|
798
|
+
readonly HasTable: MsoTriState;
|
|
799
|
+
readonly Table: Table;
|
|
800
|
+
Export(PathName: string, Filter: PpShapeFormat, ScaleWidth?: number, ScaleHeight?: number, ExportMode?: PpExportMode): void;
|
|
801
|
+
readonly HasDiagram: MsoTriState;
|
|
802
|
+
readonly Diagram: Diagram;
|
|
803
|
+
readonly HasDiagramNode: MsoTriState;
|
|
804
|
+
readonly DiagramNode: DiagramNode;
|
|
805
|
+
readonly Child: MsoTriState;
|
|
806
|
+
readonly ParentGroup: Shape;
|
|
807
|
+
readonly CanvasItems: CanvasShapes;
|
|
808
|
+
readonly Id: number;
|
|
809
|
+
CanvasCropLeft(Increment: number): void;
|
|
810
|
+
CanvasCropTop(Increment: number): void;
|
|
811
|
+
CanvasCropRight(Increment: number): void;
|
|
812
|
+
CanvasCropBottom(Increment: number): void;
|
|
813
|
+
RTF: string;
|
|
814
|
+
readonly CustomerData: CustomerData;
|
|
815
|
+
readonly TextFrame2: TextFrame2;
|
|
816
|
+
readonly HasChart: MsoTriState;
|
|
817
|
+
ShapeStyle: MsoShapeStyleIndex;
|
|
818
|
+
BackgroundStyle: MsoBackgroundStyleIndex;
|
|
819
|
+
readonly SoftEdge: SoftEdgeFormat;
|
|
820
|
+
readonly Glow: GlowFormat;
|
|
821
|
+
readonly Reflection: ReflectionFormat;
|
|
822
|
+
readonly Chart: Chart;
|
|
823
|
+
readonly HasSmartArt: MsoTriState;
|
|
824
|
+
readonly SmartArt: SmartArt;
|
|
825
|
+
ConvertTextToSmartArt(Layout: SmartArtLayout): void;
|
|
826
|
+
Title: string;
|
|
827
|
+
readonly MediaFormat: MediaFormat;
|
|
828
|
+
PickupAnimation(): void;
|
|
829
|
+
ApplyAnimation(): void;
|
|
830
|
+
UpgradeMedia(): void;
|
|
831
|
+
MergeShapes(MergeCmd: MsoMergeCmd, PrimaryShape?: Shape): void;
|
|
832
|
+
IsNarration: MsoTriState;
|
|
833
|
+
readonly InkXML: string;
|
|
834
|
+
readonly HasInkXML: MsoTriState;
|
|
835
|
+
readonly HasSectionZoom: MsoTriState;
|
|
836
|
+
GraphicStyle: MsoGraphicStyleIndex;
|
|
837
|
+
readonly Model3D: Model3DFormat;
|
|
838
|
+
Decorative: MsoTriState;
|
|
839
|
+
ConvertInkToText(): string;
|
|
840
|
+
Locked: MsoTriState;
|
|
841
|
+
}
|
|
842
|
+
interface GroupShapes{
|
|
843
|
+
readonly Application: object | any;
|
|
844
|
+
readonly Creator: number;
|
|
845
|
+
readonly Parent: object | any;
|
|
846
|
+
readonly Count: number;
|
|
847
|
+
Item(Index: any): Shape;
|
|
848
|
+
Range(Index: any): ShapeRange;
|
|
849
|
+
}
|
|
850
|
+
interface Adjustments{
|
|
851
|
+
readonly Application: object | any;
|
|
852
|
+
readonly Creator: number;
|
|
853
|
+
readonly Parent: object | any;
|
|
854
|
+
readonly Count: number;
|
|
855
|
+
Item(Index: number, Val?: number): void;
|
|
856
|
+
}
|
|
857
|
+
interface PictureFormat{
|
|
858
|
+
readonly Application: object | any;
|
|
859
|
+
readonly Creator: number;
|
|
860
|
+
readonly Parent: object | any;
|
|
861
|
+
IncrementBrightness(Increment: number): void;
|
|
862
|
+
IncrementContrast(Increment: number): void;
|
|
863
|
+
Brightness: number;
|
|
864
|
+
ColorType: MsoPictureColorType;
|
|
865
|
+
Contrast: number;
|
|
866
|
+
CropBottom: number;
|
|
867
|
+
CropLeft: number;
|
|
868
|
+
CropRight: number;
|
|
869
|
+
CropTop: number;
|
|
870
|
+
TransparencyColor: number;
|
|
871
|
+
TransparentBackground: MsoTriState;
|
|
872
|
+
readonly Crop: Crop;
|
|
873
|
+
}
|
|
874
|
+
interface FillFormat{
|
|
875
|
+
readonly Application: object | any;
|
|
876
|
+
readonly Creator: number;
|
|
877
|
+
readonly Parent: object | any;
|
|
878
|
+
Background(): void;
|
|
879
|
+
OneColorGradient(Style: MsoGradientStyle, Variant: number, Degree: number): void;
|
|
880
|
+
Patterned(Pattern: MsoPatternType): void;
|
|
881
|
+
PresetGradient(Style: MsoGradientStyle, Variant: number, PresetGradientType: MsoPresetGradientType): void;
|
|
882
|
+
PresetTextured(PresetTexture: MsoPresetTexture): void;
|
|
883
|
+
Solid(): void;
|
|
884
|
+
TwoColorGradient(Style: MsoGradientStyle, Variant: number): void;
|
|
885
|
+
UserPicture(PictureFile: string): void;
|
|
886
|
+
UserTextured(TextureFile: string): void;
|
|
887
|
+
BackColor: ColorFormat;
|
|
888
|
+
ForeColor: ColorFormat;
|
|
889
|
+
readonly GradientColorType: MsoGradientColorType;
|
|
890
|
+
readonly GradientDegree: number;
|
|
891
|
+
readonly GradientStyle: MsoGradientStyle;
|
|
892
|
+
readonly GradientVariant: number;
|
|
893
|
+
readonly Pattern: MsoPatternType;
|
|
894
|
+
readonly PresetGradientType: MsoPresetGradientType;
|
|
895
|
+
readonly PresetTexture: MsoPresetTexture;
|
|
896
|
+
readonly TextureName: string;
|
|
897
|
+
readonly TextureType: MsoTextureType;
|
|
898
|
+
Transparency: number;
|
|
899
|
+
readonly Type: MsoFillType;
|
|
900
|
+
Visible: MsoTriState;
|
|
901
|
+
readonly GradientStops: GradientStops;
|
|
902
|
+
TextureOffsetX: number;
|
|
903
|
+
TextureOffsetY: number;
|
|
904
|
+
TextureAlignment: MsoTextureAlignment;
|
|
905
|
+
TextureHorizontalScale: number;
|
|
906
|
+
TextureVerticalScale: number;
|
|
907
|
+
TextureTile: MsoTriState;
|
|
908
|
+
RotateWithObject: MsoTriState;
|
|
909
|
+
readonly PictureEffects: PictureEffects;
|
|
910
|
+
GradientAngle: number;
|
|
911
|
+
}
|
|
912
|
+
interface LineFormat{
|
|
913
|
+
readonly Application: object | any;
|
|
914
|
+
readonly Creator: number;
|
|
915
|
+
readonly Parent: object | any;
|
|
916
|
+
BackColor: ColorFormat;
|
|
917
|
+
BeginArrowheadLength: MsoArrowheadLength;
|
|
918
|
+
BeginArrowheadStyle: MsoArrowheadStyle;
|
|
919
|
+
BeginArrowheadWidth: MsoArrowheadWidth;
|
|
920
|
+
DashStyle: MsoLineDashStyle;
|
|
921
|
+
EndArrowheadLength: MsoArrowheadLength;
|
|
922
|
+
EndArrowheadStyle: MsoArrowheadStyle;
|
|
923
|
+
EndArrowheadWidth: MsoArrowheadWidth;
|
|
924
|
+
ForeColor: ColorFormat;
|
|
925
|
+
Pattern: MsoPatternType;
|
|
926
|
+
Style: MsoLineStyle;
|
|
927
|
+
Transparency: number;
|
|
928
|
+
Visible: MsoTriState;
|
|
929
|
+
Weight: number;
|
|
930
|
+
InsetPen: MsoTriState;
|
|
931
|
+
}
|
|
932
|
+
interface ShadowFormat{
|
|
933
|
+
readonly Application: object | any;
|
|
934
|
+
readonly Creator: number;
|
|
935
|
+
readonly Parent: object | any;
|
|
936
|
+
IncrementOffsetX(Increment: number): void;
|
|
937
|
+
IncrementOffsetY(Increment: number): void;
|
|
938
|
+
ForeColor: ColorFormat;
|
|
939
|
+
Obscured: MsoTriState;
|
|
940
|
+
OffsetX: number;
|
|
941
|
+
OffsetY: number;
|
|
942
|
+
Transparency: number;
|
|
943
|
+
Type: MsoShadowType;
|
|
944
|
+
Visible: MsoTriState;
|
|
945
|
+
Style: MsoShadowStyle;
|
|
946
|
+
Blur: number;
|
|
947
|
+
Size: number;
|
|
948
|
+
RotateWithShape: MsoTriState;
|
|
949
|
+
}
|
|
950
|
+
interface ConnectorFormat{
|
|
951
|
+
readonly Application: object | any;
|
|
952
|
+
readonly Creator: number;
|
|
953
|
+
readonly Parent: object | any;
|
|
954
|
+
BeginConnect(ConnectedShape: Shape, ConnectionSite: number): void;
|
|
955
|
+
BeginDisconnect(): void;
|
|
956
|
+
EndConnect(ConnectedShape: Shape, ConnectionSite: number): void;
|
|
957
|
+
EndDisconnect(): void;
|
|
958
|
+
readonly BeginConnected: MsoTriState;
|
|
959
|
+
readonly BeginConnectedShape: Shape;
|
|
960
|
+
readonly BeginConnectionSite: number;
|
|
961
|
+
readonly EndConnected: MsoTriState;
|
|
962
|
+
readonly EndConnectedShape: Shape;
|
|
963
|
+
readonly EndConnectionSite: number;
|
|
964
|
+
Type: MsoConnectorType;
|
|
965
|
+
}
|
|
966
|
+
interface TextEffectFormat{
|
|
967
|
+
readonly Application: object | any;
|
|
968
|
+
readonly Creator: number;
|
|
969
|
+
readonly Parent: object | any;
|
|
970
|
+
ToggleVerticalText(): void;
|
|
971
|
+
Alignment: MsoTextEffectAlignment;
|
|
972
|
+
FontBold: MsoTriState;
|
|
973
|
+
FontItalic: MsoTriState;
|
|
974
|
+
FontName: string;
|
|
975
|
+
FontSize: number;
|
|
976
|
+
KernedPairs: MsoTriState;
|
|
977
|
+
NormalizedHeight: MsoTriState;
|
|
978
|
+
PresetShape: MsoPresetTextEffectShape;
|
|
979
|
+
PresetTextEffect: MsoPresetTextEffect;
|
|
980
|
+
RotatedChars: MsoTriState;
|
|
981
|
+
Text: string;
|
|
982
|
+
Tracking: number;
|
|
983
|
+
}
|
|
984
|
+
interface ThreeDFormat{
|
|
985
|
+
readonly Application: object | any;
|
|
986
|
+
readonly Creator: number;
|
|
987
|
+
readonly Parent: object | any;
|
|
988
|
+
IncrementRotationX(Increment: number): void;
|
|
989
|
+
IncrementRotationY(Increment: number): void;
|
|
990
|
+
ResetRotation(): void;
|
|
991
|
+
SetThreeDFormat(PresetThreeDFormat: MsoPresetThreeDFormat): void;
|
|
992
|
+
SetExtrusionDirection(PresetExtrusionDirection: MsoPresetExtrusionDirection): void;
|
|
993
|
+
Depth: number;
|
|
994
|
+
readonly ExtrusionColor: ColorFormat;
|
|
995
|
+
ExtrusionColorType: MsoExtrusionColorType;
|
|
996
|
+
Perspective: MsoTriState;
|
|
997
|
+
readonly PresetExtrusionDirection: MsoPresetExtrusionDirection;
|
|
998
|
+
PresetLightingDirection: MsoPresetLightingDirection;
|
|
999
|
+
PresetLightingSoftness: MsoPresetLightingSoftness;
|
|
1000
|
+
PresetMaterial: MsoPresetMaterial;
|
|
1001
|
+
readonly PresetThreeDFormat: MsoPresetThreeDFormat;
|
|
1002
|
+
RotationX: number;
|
|
1003
|
+
RotationY: number;
|
|
1004
|
+
Visible: MsoTriState;
|
|
1005
|
+
SetPresetCamera(PresetCamera: MsoPresetCamera): void;
|
|
1006
|
+
IncrementRotationZ(Increment: number): void;
|
|
1007
|
+
IncrementRotationHorizontal(Increment: number): void;
|
|
1008
|
+
IncrementRotationVertical(Increment: number): void;
|
|
1009
|
+
PresetLighting: MsoLightRigType;
|
|
1010
|
+
Z: number;
|
|
1011
|
+
BevelTopType: MsoBevelType;
|
|
1012
|
+
BevelTopInset: number;
|
|
1013
|
+
BevelTopDepth: number;
|
|
1014
|
+
BevelBottomType: MsoBevelType;
|
|
1015
|
+
BevelBottomInset: number;
|
|
1016
|
+
BevelBottomDepth: number;
|
|
1017
|
+
readonly PresetCamera: MsoPresetCamera;
|
|
1018
|
+
RotationZ: number;
|
|
1019
|
+
ContourWidth: number;
|
|
1020
|
+
readonly ContourColor: ColorFormat;
|
|
1021
|
+
FieldOfView: number;
|
|
1022
|
+
ProjectText: MsoTriState;
|
|
1023
|
+
LightAngle: number;
|
|
1024
|
+
}
|
|
1025
|
+
interface TextFrame{
|
|
1026
|
+
readonly Application: object | any;
|
|
1027
|
+
readonly Creator: number;
|
|
1028
|
+
readonly Parent: object | any;
|
|
1029
|
+
MarginBottom: number;
|
|
1030
|
+
MarginLeft: number;
|
|
1031
|
+
MarginRight: number;
|
|
1032
|
+
MarginTop: number;
|
|
1033
|
+
Orientation: MsoTextOrientation;
|
|
1034
|
+
readonly HasText: MsoTriState;
|
|
1035
|
+
readonly TextRange: TextRange;
|
|
1036
|
+
readonly Ruler: Ruler;
|
|
1037
|
+
HorizontalAnchor: MsoHorizontalAnchor;
|
|
1038
|
+
VerticalAnchor: MsoVerticalAnchor;
|
|
1039
|
+
AutoSize: PpAutoSize;
|
|
1040
|
+
WordWrap: MsoTriState;
|
|
1041
|
+
DeleteText(): void;
|
|
1042
|
+
}
|
|
1043
|
+
interface CalloutFormat{
|
|
1044
|
+
readonly Application: object | any;
|
|
1045
|
+
readonly Creator: number;
|
|
1046
|
+
readonly Parent: object | any;
|
|
1047
|
+
AutomaticLength(): void;
|
|
1048
|
+
CustomDrop(Drop: number): void;
|
|
1049
|
+
CustomLength(Length: number): void;
|
|
1050
|
+
PresetDrop(DropType: MsoCalloutDropType): void;
|
|
1051
|
+
Accent: MsoTriState;
|
|
1052
|
+
Angle: MsoCalloutAngleType;
|
|
1053
|
+
AutoAttach: MsoTriState;
|
|
1054
|
+
readonly AutoLength: MsoTriState;
|
|
1055
|
+
Border: MsoTriState;
|
|
1056
|
+
readonly Drop: number;
|
|
1057
|
+
readonly DropType: MsoCalloutDropType;
|
|
1058
|
+
Gap: number;
|
|
1059
|
+
readonly Length: number;
|
|
1060
|
+
Type: MsoCalloutType;
|
|
1061
|
+
}
|
|
1062
|
+
interface ShapeNodes{
|
|
1063
|
+
readonly Application: object | any;
|
|
1064
|
+
readonly Creator: number;
|
|
1065
|
+
readonly Parent: object | any;
|
|
1066
|
+
readonly Count: number;
|
|
1067
|
+
Item(Index: any): ShapeNode;
|
|
1068
|
+
Delete(Index: number): void;
|
|
1069
|
+
Insert(Index: number, SegmentType: MsoSegmentType, EditingType: MsoEditingType, X1: number, Y1: number, X2?: number, Y2?: number, X3?: number, Y3?: number): void;
|
|
1070
|
+
SetEditingType(Index: number, EditingType: MsoEditingType): void;
|
|
1071
|
+
SetPosition(Index: number, X1: number, Y1: number): void;
|
|
1072
|
+
SetSegmentType(Index: number, SegmentType: MsoSegmentType): void;
|
|
1073
|
+
}
|
|
1074
|
+
interface ShapeNode{
|
|
1075
|
+
readonly Application: object | any;
|
|
1076
|
+
readonly Creator: number;
|
|
1077
|
+
readonly Parent: object | any;
|
|
1078
|
+
readonly EditingType: MsoEditingType;
|
|
1079
|
+
readonly Points: any;
|
|
1080
|
+
readonly SegmentType: MsoSegmentType;
|
|
1081
|
+
}
|
|
1082
|
+
interface OLEFormat{
|
|
1083
|
+
readonly Application: Application;
|
|
1084
|
+
readonly Parent: object | any;
|
|
1085
|
+
readonly ObjectVerbs: ObjectVerbs;
|
|
1086
|
+
readonly Object: object | any;
|
|
1087
|
+
readonly ProgID: string;
|
|
1088
|
+
FollowColors: PpFollowColors;
|
|
1089
|
+
DoVerb(Index?: number): void;
|
|
1090
|
+
Activate(): void;
|
|
1091
|
+
}
|
|
1092
|
+
interface LinkFormat{
|
|
1093
|
+
readonly Application: Application;
|
|
1094
|
+
readonly Parent: object | any;
|
|
1095
|
+
SourceFullName: string;
|
|
1096
|
+
AutoUpdate: PpUpdateOption;
|
|
1097
|
+
Update(): void;
|
|
1098
|
+
BreakLink(): void;
|
|
1099
|
+
}
|
|
1100
|
+
interface ObjectVerbs{
|
|
1101
|
+
readonly Application: Application;
|
|
1102
|
+
readonly Parent: object | any;
|
|
1103
|
+
Item(Index: number): string;
|
|
1104
|
+
}
|
|
1105
|
+
interface AnimationSettings{
|
|
1106
|
+
readonly Application: Application;
|
|
1107
|
+
readonly Parent: object | any;
|
|
1108
|
+
readonly DimColor: ColorFormat;
|
|
1109
|
+
readonly SoundEffect: SoundEffect;
|
|
1110
|
+
EntryEffect: PpEntryEffect;
|
|
1111
|
+
AfterEffect: PpAfterEffect;
|
|
1112
|
+
AnimationOrder: number;
|
|
1113
|
+
AdvanceMode: PpAdvanceMode;
|
|
1114
|
+
AdvanceTime: number;
|
|
1115
|
+
readonly PlaySettings: PlaySettings;
|
|
1116
|
+
TextLevelEffect: PpTextLevelEffect;
|
|
1117
|
+
TextUnitEffect: PpTextUnitEffect;
|
|
1118
|
+
Animate: MsoTriState;
|
|
1119
|
+
AnimateBackground: MsoTriState;
|
|
1120
|
+
AnimateTextInReverse: MsoTriState;
|
|
1121
|
+
ChartUnitEffect: PpChartUnitEffect;
|
|
1122
|
+
}
|
|
1123
|
+
interface ActionSettings{
|
|
1124
|
+
readonly Application: Application;
|
|
1125
|
+
readonly Parent: object | any;
|
|
1126
|
+
Item(Index: PpMouseActivation): ActionSetting;
|
|
1127
|
+
}
|
|
1128
|
+
interface ActionSetting{
|
|
1129
|
+
readonly Application: Application;
|
|
1130
|
+
readonly Parent: object | any;
|
|
1131
|
+
Action: PpActionType;
|
|
1132
|
+
ActionVerb: string;
|
|
1133
|
+
AnimateAction: MsoTriState;
|
|
1134
|
+
Run: string;
|
|
1135
|
+
SlideShowName: string;
|
|
1136
|
+
readonly Hyperlink: Hyperlink;
|
|
1137
|
+
readonly SoundEffect: SoundEffect;
|
|
1138
|
+
ShowAndReturn: MsoTriState;
|
|
1139
|
+
}
|
|
1140
|
+
interface PlaySettings{
|
|
1141
|
+
readonly Application: Application;
|
|
1142
|
+
readonly Parent: object | any;
|
|
1143
|
+
ActionVerb: string;
|
|
1144
|
+
HideWhileNotPlaying: MsoTriState;
|
|
1145
|
+
LoopUntilStopped: MsoTriState;
|
|
1146
|
+
PlayOnEntry: MsoTriState;
|
|
1147
|
+
RewindMovie: MsoTriState;
|
|
1148
|
+
PauseAnimation: MsoTriState;
|
|
1149
|
+
StopAfterSlides: number;
|
|
1150
|
+
}
|
|
1151
|
+
interface TextRange{
|
|
1152
|
+
readonly Application: Application;
|
|
1153
|
+
readonly Parent: object | any;
|
|
1154
|
+
readonly ActionSettings: ActionSettings;
|
|
1155
|
+
readonly Start: number;
|
|
1156
|
+
readonly Length: number;
|
|
1157
|
+
readonly BoundLeft: number;
|
|
1158
|
+
readonly BoundTop: number;
|
|
1159
|
+
readonly BoundWidth: number;
|
|
1160
|
+
readonly BoundHeight: number;
|
|
1161
|
+
Paragraphs(Start?: number, Length?: number): TextRange;
|
|
1162
|
+
Sentences(Start?: number, Length?: number): TextRange;
|
|
1163
|
+
Words(Start?: number, Length?: number): TextRange;
|
|
1164
|
+
Characters(Start?: number, Length?: number): TextRange;
|
|
1165
|
+
Lines(Start?: number, Length?: number): TextRange;
|
|
1166
|
+
Runs(Start?: number, Length?: number): TextRange;
|
|
1167
|
+
TrimText(): TextRange;
|
|
1168
|
+
Text: string;
|
|
1169
|
+
InsertAfter(NewText?: string): TextRange;
|
|
1170
|
+
InsertBefore(NewText?: string): TextRange;
|
|
1171
|
+
InsertDateTime(DateTimeFormat: PpDateTimeFormat, InsertAsField?: MsoTriState): TextRange;
|
|
1172
|
+
InsertSlideNumber(): TextRange;
|
|
1173
|
+
InsertSymbol(FontName: string, CharNumber: number, Unicode?: MsoTriState): TextRange;
|
|
1174
|
+
readonly Font: Font;
|
|
1175
|
+
readonly ParagraphFormat: ParagraphFormat;
|
|
1176
|
+
IndentLevel: number;
|
|
1177
|
+
Select(): void;
|
|
1178
|
+
Cut(): void;
|
|
1179
|
+
Copy(): void;
|
|
1180
|
+
Delete(): void;
|
|
1181
|
+
Paste(): TextRange;
|
|
1182
|
+
ChangeCase(Type: PpChangeCase): void;
|
|
1183
|
+
AddPeriods(): void;
|
|
1184
|
+
RemovePeriods(): void;
|
|
1185
|
+
Find(FindWhat: string, After?: number, MatchCase?: MsoTriState, WholeWords?: MsoTriState): TextRange;
|
|
1186
|
+
Replace(FindWhat: string, ReplaceWhat: string, After?: number, MatchCase?: MsoTriState, WholeWords?: MsoTriState): TextRange;
|
|
1187
|
+
RotatedBounds(X1: number, Y1: number, X2: number, Y2: number, X3: number, Y3: number, x4: number, y4: number): void;
|
|
1188
|
+
LanguageID: MsoLanguageID;
|
|
1189
|
+
RtlRun(): void;
|
|
1190
|
+
LtrRun(): void;
|
|
1191
|
+
PasteSpecial(DataType?: PpPasteDataType, DisplayAsIcon?: MsoTriState, IconFileName?: string, IconIndex?: number, IconLabel?: string, Link?: MsoTriState): TextRange;
|
|
1192
|
+
}
|
|
1193
|
+
interface Ruler{
|
|
1194
|
+
readonly Application: Application;
|
|
1195
|
+
readonly Parent: object | any;
|
|
1196
|
+
readonly TabStops: TabStops;
|
|
1197
|
+
readonly Levels: RulerLevels;
|
|
1198
|
+
}
|
|
1199
|
+
interface RulerLevels{
|
|
1200
|
+
readonly Application: Application;
|
|
1201
|
+
readonly Parent: object | any;
|
|
1202
|
+
Item(Index: number): RulerLevel;
|
|
1203
|
+
}
|
|
1204
|
+
interface RulerLevel{
|
|
1205
|
+
readonly Application: Application;
|
|
1206
|
+
readonly Parent: object | any;
|
|
1207
|
+
FirstMargin: number;
|
|
1208
|
+
LeftMargin: number;
|
|
1209
|
+
}
|
|
1210
|
+
interface TabStops{
|
|
1211
|
+
readonly Application: Application;
|
|
1212
|
+
readonly Parent: object | any;
|
|
1213
|
+
Item(Index: number): TabStop;
|
|
1214
|
+
DefaultSpacing: number;
|
|
1215
|
+
Add(Type: PpTabStopType, Position: number): TabStop;
|
|
1216
|
+
}
|
|
1217
|
+
interface TabStop{
|
|
1218
|
+
readonly Application: Application;
|
|
1219
|
+
readonly Parent: object | any;
|
|
1220
|
+
Type: PpTabStopType;
|
|
1221
|
+
Position: number;
|
|
1222
|
+
Clear(): void;
|
|
1223
|
+
}
|
|
1224
|
+
interface Font{
|
|
1225
|
+
readonly Application: Application;
|
|
1226
|
+
readonly Parent: object | any;
|
|
1227
|
+
readonly Color: ColorFormat;
|
|
1228
|
+
Bold: MsoTriState;
|
|
1229
|
+
Italic: MsoTriState;
|
|
1230
|
+
Shadow: MsoTriState;
|
|
1231
|
+
Emboss: MsoTriState;
|
|
1232
|
+
Underline: MsoTriState;
|
|
1233
|
+
Subscript: MsoTriState;
|
|
1234
|
+
Superscript: MsoTriState;
|
|
1235
|
+
BaselineOffset: number;
|
|
1236
|
+
readonly Embedded: MsoTriState;
|
|
1237
|
+
readonly Embeddable: MsoTriState;
|
|
1238
|
+
Size: number;
|
|
1239
|
+
Name: string;
|
|
1240
|
+
NameFarEast: string;
|
|
1241
|
+
NameAscii: string;
|
|
1242
|
+
AutoRotateNumbers: MsoTriState;
|
|
1243
|
+
NameOther: string;
|
|
1244
|
+
NameComplexScript: string;
|
|
1245
|
+
}
|
|
1246
|
+
interface ParagraphFormat{
|
|
1247
|
+
readonly Application: Application;
|
|
1248
|
+
readonly Parent: object | any;
|
|
1249
|
+
Alignment: PpParagraphAlignment;
|
|
1250
|
+
readonly Bullet: BulletFormat;
|
|
1251
|
+
LineRuleBefore: MsoTriState;
|
|
1252
|
+
LineRuleAfter: MsoTriState;
|
|
1253
|
+
LineRuleWithin: MsoTriState;
|
|
1254
|
+
SpaceBefore: number;
|
|
1255
|
+
SpaceAfter: number;
|
|
1256
|
+
SpaceWithin: number;
|
|
1257
|
+
BaseLineAlignment: PpBaselineAlignment;
|
|
1258
|
+
FarEastLineBreakControl: MsoTriState;
|
|
1259
|
+
WordWrap: MsoTriState;
|
|
1260
|
+
HangingPunctuation: MsoTriState;
|
|
1261
|
+
TextDirection: PpDirection;
|
|
1262
|
+
}
|
|
1263
|
+
interface BulletFormat{
|
|
1264
|
+
readonly Application: Application;
|
|
1265
|
+
readonly Parent: object | any;
|
|
1266
|
+
Visible: MsoTriState;
|
|
1267
|
+
Character: number;
|
|
1268
|
+
RelativeSize: number;
|
|
1269
|
+
UseTextColor: MsoTriState;
|
|
1270
|
+
UseTextFont: MsoTriState;
|
|
1271
|
+
readonly Font: Font;
|
|
1272
|
+
Type: PpBulletType;
|
|
1273
|
+
Style: PpNumberedBulletStyle;
|
|
1274
|
+
StartValue: number;
|
|
1275
|
+
Picture(Picture: string): void;
|
|
1276
|
+
readonly Number: number;
|
|
1277
|
+
}
|
|
1278
|
+
interface TextStyles{
|
|
1279
|
+
readonly Application: Application;
|
|
1280
|
+
readonly Parent: object | any;
|
|
1281
|
+
Item(Type: PpTextStyleType): TextStyle;
|
|
1282
|
+
}
|
|
1283
|
+
interface TextStyle{
|
|
1284
|
+
readonly Application: Application;
|
|
1285
|
+
readonly Parent: object | any;
|
|
1286
|
+
readonly Ruler: Ruler;
|
|
1287
|
+
readonly TextFrame: TextFrame;
|
|
1288
|
+
readonly Levels: TextStyleLevels;
|
|
1289
|
+
}
|
|
1290
|
+
interface TextStyleLevels{
|
|
1291
|
+
readonly Application: Application;
|
|
1292
|
+
readonly Parent: object | any;
|
|
1293
|
+
Item(Level: number): TextStyleLevel;
|
|
1294
|
+
}
|
|
1295
|
+
interface TextStyleLevel{
|
|
1296
|
+
readonly Application: Application;
|
|
1297
|
+
readonly Parent: object | any;
|
|
1298
|
+
readonly ParagraphFormat: ParagraphFormat;
|
|
1299
|
+
readonly Font: Font;
|
|
1300
|
+
}
|
|
1301
|
+
interface HeaderFooter{
|
|
1302
|
+
readonly Application: Application;
|
|
1303
|
+
readonly Parent: object | any;
|
|
1304
|
+
Visible: MsoTriState;
|
|
1305
|
+
Text: string;
|
|
1306
|
+
UseFormat: MsoTriState;
|
|
1307
|
+
Format: PpDateTimeFormat;
|
|
1308
|
+
}
|
|
1309
|
+
interface Presentation{
|
|
1310
|
+
readonly Application: Application;
|
|
1311
|
+
readonly Parent: object | any;
|
|
1312
|
+
readonly SlideMaster: Master;
|
|
1313
|
+
readonly TitleMaster: Master;
|
|
1314
|
+
readonly HasTitleMaster: MsoTriState;
|
|
1315
|
+
AddTitleMaster(): Master;
|
|
1316
|
+
ApplyTemplate(FileName: string): void;
|
|
1317
|
+
readonly TemplateName: string;
|
|
1318
|
+
readonly NotesMaster: Master;
|
|
1319
|
+
readonly HandoutMaster: Master;
|
|
1320
|
+
readonly Slides: Slides;
|
|
1321
|
+
readonly PageSetup: PageSetup;
|
|
1322
|
+
readonly ColorSchemes: ColorSchemes;
|
|
1323
|
+
readonly ExtraColors: ExtraColors;
|
|
1324
|
+
readonly SlideShowSettings: SlideShowSettings;
|
|
1325
|
+
readonly Fonts: Fonts;
|
|
1326
|
+
readonly Windows: DocumentWindows;
|
|
1327
|
+
readonly Tags: Tags;
|
|
1328
|
+
readonly DefaultShape: Shape;
|
|
1329
|
+
readonly BuiltInDocumentProperties: object | any;
|
|
1330
|
+
readonly CustomDocumentProperties: object | any;
|
|
1331
|
+
readonly ReadOnly: MsoTriState;
|
|
1332
|
+
readonly FullName: string;
|
|
1333
|
+
readonly Name: string;
|
|
1334
|
+
readonly Path: string;
|
|
1335
|
+
Saved: MsoTriState;
|
|
1336
|
+
LayoutDirection: PpDirection;
|
|
1337
|
+
NewWindow(): DocumentWindow;
|
|
1338
|
+
FollowHyperlink(Address: string, SubAddress?: string, NewWindow?: boolean, AddHistory?: boolean, ExtraInfo?: string, Method?: MsoExtraInfoMethod, HeaderInfo?: string): void;
|
|
1339
|
+
AddToFavorites(): void;
|
|
1340
|
+
readonly PrintOptions: PrintOptions;
|
|
1341
|
+
PrintOut(From?: number, To?: number, PrintToFile?: string, Copies?: number, Collate?: MsoTriState): void;
|
|
1342
|
+
Save(): void;
|
|
1343
|
+
SaveAs(FileName: string, FileFormat?: PpSaveAsFileType, EmbedTrueTypeFonts?: MsoTriState): void;
|
|
1344
|
+
SaveCopyAs(FileName: string, FileFormat?: PpSaveAsFileType, EmbedTrueTypeFonts?: MsoTriState): void;
|
|
1345
|
+
Export(Path: string, FilterName: string, ScaleWidth?: number, ScaleHeight?: number): void;
|
|
1346
|
+
Close(): void;
|
|
1347
|
+
SetUndoText(Text: string): void;
|
|
1348
|
+
readonly Container: object | any;
|
|
1349
|
+
DisplayComments: MsoTriState;
|
|
1350
|
+
FarEastLineBreakLevel: PpFarEastLineBreakLevel;
|
|
1351
|
+
NoLineBreakBefore: string;
|
|
1352
|
+
NoLineBreakAfter: string;
|
|
1353
|
+
UpdateLinks(): void;
|
|
1354
|
+
readonly SlideShowWindow: SlideShowWindow;
|
|
1355
|
+
FarEastLineBreakLanguage: MsoFarEastLineBreakLanguageID;
|
|
1356
|
+
WebPagePreview(): void;
|
|
1357
|
+
DefaultLanguageID: MsoLanguageID;
|
|
1358
|
+
readonly CommandBars: CommandBars;
|
|
1359
|
+
readonly PublishObjects: PublishObjects;
|
|
1360
|
+
readonly WebOptions: WebOptions;
|
|
1361
|
+
readonly HTMLProject: HTMLProject;
|
|
1362
|
+
ReloadAs(cp: MsoEncoding): void;
|
|
1363
|
+
MakeIntoTemplate(IsDesignTemplate: MsoTriState): void;
|
|
1364
|
+
EnvelopeVisible: MsoTriState;
|
|
1365
|
+
sblt(s: string): void;
|
|
1366
|
+
readonly VBASigned: MsoTriState;
|
|
1367
|
+
SnapToGrid: MsoTriState;
|
|
1368
|
+
GridDistance: number;
|
|
1369
|
+
readonly Designs: Designs;
|
|
1370
|
+
Merge(Path: string): void;
|
|
1371
|
+
CheckIn(SaveChanges?: boolean, Comments?: any, MakePublic?: any): void;
|
|
1372
|
+
CanCheckIn(): boolean;
|
|
1373
|
+
readonly Signatures: SignatureSet;
|
|
1374
|
+
RemovePersonalInformation: MsoTriState;
|
|
1375
|
+
SendForReview(Recipients?: string, Subject?: string, ShowMessage?: boolean, IncludeAttachment?: any): void;
|
|
1376
|
+
ReplyWithChanges(ShowMessage?: boolean): void;
|
|
1377
|
+
EndReview(): void;
|
|
1378
|
+
readonly HasRevisionInfo: PpRevisionInfo;
|
|
1379
|
+
AddBaseline(FileName?: string): void;
|
|
1380
|
+
RemoveBaseline(): void;
|
|
1381
|
+
readonly PasswordEncryptionProvider: string;
|
|
1382
|
+
readonly PasswordEncryptionAlgorithm: string;
|
|
1383
|
+
readonly PasswordEncryptionKeyLength: number;
|
|
1384
|
+
readonly PasswordEncryptionFileProperties: boolean;
|
|
1385
|
+
SetPasswordEncryptionOptions(PasswordEncryptionProvider: string, PasswordEncryptionAlgorithm: string, PasswordEncryptionKeyLength: number, PasswordEncryptionFileProperties: boolean): void;
|
|
1386
|
+
Password: string;
|
|
1387
|
+
WritePassword: string;
|
|
1388
|
+
readonly Permission: Permission;
|
|
1389
|
+
readonly SharedWorkspace: SharedWorkspace;
|
|
1390
|
+
readonly Sync: Sync;
|
|
1391
|
+
SendFaxOverInternet(Recipients?: string, Subject?: string, ShowMessage?: boolean): void;
|
|
1392
|
+
readonly DocumentLibraryVersions: DocumentLibraryVersions;
|
|
1393
|
+
readonly ContentTypeProperties: MetaProperties;
|
|
1394
|
+
readonly SectionCount: number;
|
|
1395
|
+
readonly HasSections: boolean;
|
|
1396
|
+
NewSectionAfter(Index: number, AfterSlide: boolean, sectionTitle: string, newSectionIndex: number): void;
|
|
1397
|
+
DeleteSection(Index: number): void;
|
|
1398
|
+
DisableSections(): void;
|
|
1399
|
+
sectionTitle(Index: number): string;
|
|
1400
|
+
RemoveDocumentInformation(Type: PpRemoveDocInfoType): void;
|
|
1401
|
+
CheckInWithVersion(SaveChanges?: boolean, Comments?: any, MakePublic?: any, VersionType?: any): void;
|
|
1402
|
+
ExportAsFixedFormat(Path: string, FixedFormatType: PpFixedFormatType, Intent?: PpFixedFormatIntent, FrameSlides?: MsoTriState, HandoutOrder?: PpPrintHandoutOrder, OutputType?: PpPrintOutputType, PrintHiddenSlides?: MsoTriState, PrintRange?: PrintRange, RangeType?: PpPrintRangeType, SlideShowName?: string, IncludeDocProperties?: boolean, KeepIRMSettings?: boolean, DocStructureTags?: boolean, BitmapMissingFonts?: boolean, UseISO19005_1?: boolean, ExternalExporter?: any): void;
|
|
1403
|
+
readonly ServerPolicy: ServerPolicy;
|
|
1404
|
+
GetWorkflowTasks(): WorkflowTasks;
|
|
1405
|
+
GetWorkflowTemplates(): WorkflowTemplates;
|
|
1406
|
+
LockServerFile(): void;
|
|
1407
|
+
readonly DocumentInspectors: DocumentInspectors;
|
|
1408
|
+
readonly HasVBProject: boolean;
|
|
1409
|
+
readonly CustomXMLParts: CustomXMLParts;
|
|
1410
|
+
Final: boolean;
|
|
1411
|
+
ApplyTheme(themeName: string): void;
|
|
1412
|
+
readonly CustomerData: CustomerData;
|
|
1413
|
+
readonly Research: Research;
|
|
1414
|
+
PublishSlides(SlideLibraryUrl: string, Overwrite?: boolean, UseSlideOrder?: boolean): void;
|
|
1415
|
+
EncryptionProvider: string;
|
|
1416
|
+
Convert(): void;
|
|
1417
|
+
readonly SectionProperties: SectionProperties;
|
|
1418
|
+
readonly Coauthoring: Coauthoring;
|
|
1419
|
+
MergeWithBaseline(withPresentation: string, baselinePresentation: string): void;
|
|
1420
|
+
readonly InMergeMode: boolean;
|
|
1421
|
+
AcceptAll(): void;
|
|
1422
|
+
RejectAll(): void;
|
|
1423
|
+
EnsureAllMediaUpgraded(): void;
|
|
1424
|
+
readonly Broadcast: Broadcast;
|
|
1425
|
+
readonly HasNotesMaster: boolean;
|
|
1426
|
+
readonly HasHandoutMaster: boolean;
|
|
1427
|
+
Convert2(FileName: string): void;
|
|
1428
|
+
readonly CreateVideoStatus: PpMediaTaskStatus;
|
|
1429
|
+
CreateVideo(FileName: string, UseTimingsAndNarrations?: boolean, DefaultSlideDuration?: number, VertResolution?: number, FramesPerSecond?: number, Quality?: number): void;
|
|
1430
|
+
ApplyTemplate2(FileName: string, VariantGUID: string): void;
|
|
1431
|
+
ChartDataPointTrack: boolean;
|
|
1432
|
+
ExportAsFixedFormat2(Path: string, FixedFormatType: PpFixedFormatType, Intent?: PpFixedFormatIntent, FrameSlides?: MsoTriState, HandoutOrder?: PpPrintHandoutOrder, OutputType?: PpPrintOutputType, PrintHiddenSlides?: MsoTriState, PrintRange?: PrintRange, RangeType?: PpPrintRangeType, SlideShowName?: string, IncludeDocProperties?: boolean, KeepIRMSettings?: boolean, DocStructureTags?: boolean, BitmapMissingFonts?: boolean, UseISO19005_1?: boolean, IncludeMarkup?: boolean, ExternalExporter?: any): void;
|
|
1433
|
+
readonly Guides: Guides;
|
|
1434
|
+
WorkIdentity: string;
|
|
1435
|
+
AutoSaveOn: boolean;
|
|
1436
|
+
SaveCopyAs2(FileName: string, FileFormat?: PpSaveAsFileType, EmbedTrueTypeFonts?: MsoTriState, ReadOnlyRecommended?: MsoTriState): void;
|
|
1437
|
+
readonly ReadOnlyRecommended: boolean;
|
|
1438
|
+
readonly SensitivityLabel: SensitivityLabel;
|
|
1439
|
+
readonly IsFullyDownloaded: boolean;
|
|
1440
|
+
ExportAsFixedFormat3(Path: string, FixedFormatType: PpFixedFormatType, Intent?: PpFixedFormatIntent, FrameSlides?: MsoTriState, HandoutOrder?: PpPrintHandoutOrder, OutputType?: PpPrintOutputType, PrintHiddenSlides?: MsoTriState, PrintRange?: PrintRange, RangeType?: PpPrintRangeType, SlideShowName?: string, IncludeDocProperties?: boolean, KeepIRMSettings?: boolean, DocStructureTags?: boolean, BitmapMissingFonts?: boolean, UseISO19005_1?: boolean, IncludeMarkup?: boolean, Bookmarks?: boolean, DocumentMarkup?: boolean, PromotedHyperlinkShape?: boolean, ExternalExporter?: any): void;
|
|
1441
|
+
}
|
|
1442
|
+
interface Tags{
|
|
1443
|
+
readonly Application: Application;
|
|
1444
|
+
readonly Parent: object | any;
|
|
1445
|
+
Item(Name: string): string;
|
|
1446
|
+
Add(Name: string, Value: string): void;
|
|
1447
|
+
Delete(Name: string): void;
|
|
1448
|
+
AddBinary(Name: string, FilePath: string): void;
|
|
1449
|
+
BinaryValue(Name: string): number;
|
|
1450
|
+
Name(Index: number): string;
|
|
1451
|
+
Value(Index: number): string;
|
|
1452
|
+
}
|
|
1453
|
+
interface MouseTracker{
|
|
1454
|
+
OnTrack(X: number, Y: number): void;
|
|
1455
|
+
EndTrack(X: number, Y: number): void;
|
|
1456
|
+
}
|
|
1457
|
+
interface MouseDownHandler{
|
|
1458
|
+
OnMouseDown(activeWin: object | any): void;
|
|
1459
|
+
}
|
|
1460
|
+
interface OCXExtender{
|
|
1461
|
+
Visible: boolean;
|
|
1462
|
+
Left: number;
|
|
1463
|
+
Top: number;
|
|
1464
|
+
Height: number;
|
|
1465
|
+
Width: number;
|
|
1466
|
+
readonly ZOrderPosition: number;
|
|
1467
|
+
Name: string;
|
|
1468
|
+
AltHTML: string;
|
|
1469
|
+
}
|
|
1470
|
+
interface OCXExtenderEvents{
|
|
1471
|
+
GotFocus(): void;
|
|
1472
|
+
LostFocus(): void;
|
|
1473
|
+
}
|
|
1474
|
+
interface EApplication{
|
|
1475
|
+
WindowSelectionChange(Sel: Selection): void;
|
|
1476
|
+
WindowBeforeRightClick(Sel: Selection, Cancel: boolean): void;
|
|
1477
|
+
WindowBeforeDoubleClick(Sel: Selection, Cancel: boolean): void;
|
|
1478
|
+
PresentationClose(Pres: Presentation): void;
|
|
1479
|
+
PresentationSave(Pres: Presentation): void;
|
|
1480
|
+
PresentationOpen(Pres: Presentation): void;
|
|
1481
|
+
NewPresentation(Pres: Presentation): void;
|
|
1482
|
+
PresentationNewSlide(Sld: Slide): void;
|
|
1483
|
+
WindowActivate(Pres: Presentation, Wn: DocumentWindow): void;
|
|
1484
|
+
WindowDeactivate(Pres: Presentation, Wn: DocumentWindow): void;
|
|
1485
|
+
SlideShowBegin(Wn: SlideShowWindow): void;
|
|
1486
|
+
SlideShowNextBuild(Wn: SlideShowWindow): void;
|
|
1487
|
+
SlideShowNextSlide(Wn: SlideShowWindow): void;
|
|
1488
|
+
SlideShowEnd(Pres: Presentation): void;
|
|
1489
|
+
PresentationPrint(Pres: Presentation): void;
|
|
1490
|
+
SlideSelectionChanged(SldRange: SlideRange): void;
|
|
1491
|
+
ColorSchemeChanged(SldRange: SlideRange): void;
|
|
1492
|
+
PresentationBeforeSave(Pres: Presentation, Cancel: boolean): void;
|
|
1493
|
+
SlideShowNextClick(Wn: SlideShowWindow, nEffect: Effect): void;
|
|
1494
|
+
AfterNewPresentation(Pres: Presentation): void;
|
|
1495
|
+
AfterPresentationOpen(Pres: Presentation): void;
|
|
1496
|
+
PresentationSync(Pres: Presentation, SyncEventType: MsoSyncEventType): void;
|
|
1497
|
+
SlideShowOnNext(Wn: SlideShowWindow): void;
|
|
1498
|
+
SlideShowOnPrevious(Wn: SlideShowWindow): void;
|
|
1499
|
+
PresentationBeforeClose(Pres: Presentation, Cancel: boolean): void;
|
|
1500
|
+
ProtectedViewWindowOpen(ProtViewWindow: ProtectedViewWindow): void;
|
|
1501
|
+
ProtectedViewWindowBeforeEdit(ProtViewWindow: ProtectedViewWindow, Cancel: boolean): void;
|
|
1502
|
+
ProtectedViewWindowBeforeClose(ProtViewWindow: ProtectedViewWindow, ProtectedViewCloseReason: PpProtectedViewCloseReason, Cancel: boolean): void;
|
|
1503
|
+
ProtectedViewWindowActivate(ProtViewWindow: ProtectedViewWindow): void;
|
|
1504
|
+
ProtectedViewWindowDeactivate(ProtViewWindow: ProtectedViewWindow): void;
|
|
1505
|
+
PresentationCloseFinal(Pres: Presentation): void;
|
|
1506
|
+
AfterDragDropOnSlide(Sld: Slide, X: number, Y: number): void;
|
|
1507
|
+
AfterShapeSizeChange(shp: Shape): void;
|
|
1508
|
+
}
|
|
1509
|
+
interface Table{
|
|
1510
|
+
readonly Application: Application;
|
|
1511
|
+
readonly Parent: object | any;
|
|
1512
|
+
readonly Columns: Columns;
|
|
1513
|
+
readonly Rows: Rows;
|
|
1514
|
+
Cell(Row: number, Column: number): Cell;
|
|
1515
|
+
TableDirection: PpDirection;
|
|
1516
|
+
MergeBorders(): void;
|
|
1517
|
+
FirstRow: boolean;
|
|
1518
|
+
LastRow: boolean;
|
|
1519
|
+
FirstCol: boolean;
|
|
1520
|
+
LastCol: boolean;
|
|
1521
|
+
HorizBanding: boolean;
|
|
1522
|
+
VertBanding: boolean;
|
|
1523
|
+
readonly Style: TableStyle;
|
|
1524
|
+
readonly Background: TableBackground;
|
|
1525
|
+
ScaleProportionally(scale: number): void;
|
|
1526
|
+
ApplyStyle(StyleID?: string, SaveFormatting?: boolean): void;
|
|
1527
|
+
AlternativeText: string;
|
|
1528
|
+
Title: string;
|
|
1529
|
+
}
|
|
1530
|
+
interface Columns{
|
|
1531
|
+
readonly Application: Application;
|
|
1532
|
+
readonly Parent: object | any;
|
|
1533
|
+
Item(Index: number): Column;
|
|
1534
|
+
Add(BeforeColumn?: number): Column;
|
|
1535
|
+
}
|
|
1536
|
+
interface Column{
|
|
1537
|
+
readonly Application: Application;
|
|
1538
|
+
readonly Parent: object | any;
|
|
1539
|
+
readonly Cells: CellRange;
|
|
1540
|
+
Select(): void;
|
|
1541
|
+
Delete(): void;
|
|
1542
|
+
Width: number;
|
|
1543
|
+
}
|
|
1544
|
+
interface Rows{
|
|
1545
|
+
readonly Application: Application;
|
|
1546
|
+
readonly Parent: object | any;
|
|
1547
|
+
Item(Index: number): Row;
|
|
1548
|
+
Add(BeforeRow?: number): Row;
|
|
1549
|
+
}
|
|
1550
|
+
interface Row{
|
|
1551
|
+
readonly Application: Application;
|
|
1552
|
+
readonly Parent: object | any;
|
|
1553
|
+
readonly Cells: CellRange;
|
|
1554
|
+
Select(): void;
|
|
1555
|
+
Delete(): void;
|
|
1556
|
+
Height: number;
|
|
1557
|
+
}
|
|
1558
|
+
interface CellRange{
|
|
1559
|
+
readonly Application: Application;
|
|
1560
|
+
readonly Parent: object | any;
|
|
1561
|
+
Item(Index: number): Cell;
|
|
1562
|
+
readonly Borders: Borders;
|
|
1563
|
+
}
|
|
1564
|
+
interface Cell{
|
|
1565
|
+
readonly Application: Application;
|
|
1566
|
+
readonly Parent: object | any;
|
|
1567
|
+
readonly Shape: Shape;
|
|
1568
|
+
readonly Borders: Borders;
|
|
1569
|
+
Merge(MergeTo: Cell): void;
|
|
1570
|
+
Split(NumRows: number, NumColumns: number): void;
|
|
1571
|
+
Select(): void;
|
|
1572
|
+
readonly Selected: boolean;
|
|
1573
|
+
}
|
|
1574
|
+
interface Borders{
|
|
1575
|
+
readonly Application: Application;
|
|
1576
|
+
readonly Parent: object | any;
|
|
1577
|
+
Item(BorderType: PpBorderType): LineFormat;
|
|
1578
|
+
}
|
|
1579
|
+
interface Panes{
|
|
1580
|
+
readonly Application: Application;
|
|
1581
|
+
Item(Index: number): Pane;
|
|
1582
|
+
readonly Parent: object | any;
|
|
1583
|
+
}
|
|
1584
|
+
interface Pane{
|
|
1585
|
+
readonly Parent: object | any;
|
|
1586
|
+
Activate(): void;
|
|
1587
|
+
readonly Active: MsoTriState;
|
|
1588
|
+
readonly Application: Application;
|
|
1589
|
+
readonly ViewType: PpViewType;
|
|
1590
|
+
}
|
|
1591
|
+
interface DefaultWebOptions{
|
|
1592
|
+
IncludeNavigation: MsoTriState;
|
|
1593
|
+
FrameColors: PpFrameColors;
|
|
1594
|
+
ResizeGraphics: MsoTriState;
|
|
1595
|
+
ShowSlideAnimation: MsoTriState;
|
|
1596
|
+
OrganizeInFolder: MsoTriState;
|
|
1597
|
+
UseLongFileNames: MsoTriState;
|
|
1598
|
+
RelyOnVML: MsoTriState;
|
|
1599
|
+
AllowPNG: MsoTriState;
|
|
1600
|
+
ScreenSize: MsoScreenSize;
|
|
1601
|
+
Encoding: MsoEncoding;
|
|
1602
|
+
UpdateLinksOnSave: MsoTriState;
|
|
1603
|
+
CheckIfOfficeIsHTMLEditor: MsoTriState;
|
|
1604
|
+
AlwaysSaveInDefaultEncoding: MsoTriState;
|
|
1605
|
+
readonly Fonts: WebPageFonts;
|
|
1606
|
+
readonly FolderSuffix: string;
|
|
1607
|
+
TargetBrowser: MsoTargetBrowser;
|
|
1608
|
+
SaveNewWebPagesAsWebArchives: MsoTriState;
|
|
1609
|
+
HTMLVersion: PpHTMLVersion;
|
|
1610
|
+
}
|
|
1611
|
+
interface WebOptions{
|
|
1612
|
+
IncludeNavigation: MsoTriState;
|
|
1613
|
+
FrameColors: PpFrameColors;
|
|
1614
|
+
ResizeGraphics: MsoTriState;
|
|
1615
|
+
ShowSlideAnimation: MsoTriState;
|
|
1616
|
+
OrganizeInFolder: MsoTriState;
|
|
1617
|
+
UseLongFileNames: MsoTriState;
|
|
1618
|
+
RelyOnVML: MsoTriState;
|
|
1619
|
+
AllowPNG: MsoTriState;
|
|
1620
|
+
ScreenSize: MsoScreenSize;
|
|
1621
|
+
Encoding: MsoEncoding;
|
|
1622
|
+
readonly FolderSuffix: string;
|
|
1623
|
+
UseDefaultFolderSuffix(): void;
|
|
1624
|
+
TargetBrowser: MsoTargetBrowser;
|
|
1625
|
+
HTMLVersion: PpHTMLVersion;
|
|
1626
|
+
}
|
|
1627
|
+
interface PublishObjects{
|
|
1628
|
+
readonly Application: Application;
|
|
1629
|
+
readonly Parent: object | any;
|
|
1630
|
+
Item(Index: number): PublishObject;
|
|
1631
|
+
}
|
|
1632
|
+
interface PublishObject{
|
|
1633
|
+
readonly Application: Application;
|
|
1634
|
+
readonly Parent: object | any;
|
|
1635
|
+
HTMLVersion: PpHTMLVersion;
|
|
1636
|
+
SourceType: PpPublishSourceType;
|
|
1637
|
+
RangeStart: number;
|
|
1638
|
+
RangeEnd: number;
|
|
1639
|
+
SlideShowName: string;
|
|
1640
|
+
SpeakerNotes: MsoTriState;
|
|
1641
|
+
FileName: string;
|
|
1642
|
+
Publish(): void;
|
|
1643
|
+
}
|
|
1644
|
+
interface MasterEvents{
|
|
1645
|
+
}
|
|
1646
|
+
interface PowerRex{
|
|
1647
|
+
OnAsfEncoderEvent(erorCode: any, bstrErrorDesc: any): void;
|
|
1648
|
+
}
|
|
1649
|
+
interface Comments{
|
|
1650
|
+
readonly Application: Application;
|
|
1651
|
+
readonly Parent: object | any;
|
|
1652
|
+
Item(Index: number): Comment;
|
|
1653
|
+
Add(Left: number, Top: number, Author: string, AuthorInitials: string, Text: string): Comment;
|
|
1654
|
+
Add2(Left: number, Top: number, Author: string, AuthorInitials: string, Text: string, ProviderID: string, UserID: string): Comment;
|
|
1655
|
+
}
|
|
1656
|
+
interface Comment{
|
|
1657
|
+
readonly Application: Application;
|
|
1658
|
+
readonly Parent: object | any;
|
|
1659
|
+
readonly Author: string;
|
|
1660
|
+
readonly AuthorInitials: string;
|
|
1661
|
+
readonly Text: string;
|
|
1662
|
+
readonly DateTime: number;
|
|
1663
|
+
readonly AuthorIndex: number;
|
|
1664
|
+
readonly Left: number;
|
|
1665
|
+
readonly Top: number;
|
|
1666
|
+
Delete(): void;
|
|
1667
|
+
readonly ProviderID: string;
|
|
1668
|
+
readonly UserID: string;
|
|
1669
|
+
readonly TimeZoneBias: number;
|
|
1670
|
+
readonly Replies: Comments;
|
|
1671
|
+
readonly Collapsed: boolean;
|
|
1672
|
+
}
|
|
1673
|
+
interface Designs{
|
|
1674
|
+
readonly Application: Application;
|
|
1675
|
+
readonly Parent: object | any;
|
|
1676
|
+
Item(Index: any): Design;
|
|
1677
|
+
Add(designName: string, Index?: number): Design;
|
|
1678
|
+
Load(TemplateName: string, Index?: number): Design;
|
|
1679
|
+
Clone(pOriginal: Design, Index?: number): Design;
|
|
1680
|
+
}
|
|
1681
|
+
interface Design{
|
|
1682
|
+
readonly Application: Application;
|
|
1683
|
+
readonly Parent: object | any;
|
|
1684
|
+
readonly SlideMaster: Master;
|
|
1685
|
+
readonly TitleMaster: Master;
|
|
1686
|
+
readonly HasTitleMaster: MsoTriState;
|
|
1687
|
+
AddTitleMaster(): Master;
|
|
1688
|
+
readonly Index: number;
|
|
1689
|
+
Name: string;
|
|
1690
|
+
Preserved: MsoTriState;
|
|
1691
|
+
MoveTo(toPos: number): void;
|
|
1692
|
+
Delete(): void;
|
|
1693
|
+
}
|
|
1694
|
+
interface DiagramNode{
|
|
1695
|
+
readonly Application: object | any;
|
|
1696
|
+
readonly Creator: number;
|
|
1697
|
+
AddNode(Pos?: MsoRelativeNodePosition, NodeType?: MsoDiagramNodeType): DiagramNode;
|
|
1698
|
+
Delete(): void;
|
|
1699
|
+
MoveNode(TargetNode: DiagramNode, Pos: MsoRelativeNodePosition): void;
|
|
1700
|
+
ReplaceNode(TargetNode: DiagramNode): void;
|
|
1701
|
+
SwapNode(TargetNode: DiagramNode, SwapChildren?: boolean): void;
|
|
1702
|
+
CloneNode(CopyChildren: boolean, TargetNode: DiagramNode, Pos?: MsoRelativeNodePosition): DiagramNode;
|
|
1703
|
+
TransferChildren(ReceivingNode: DiagramNode): void;
|
|
1704
|
+
NextNode(): DiagramNode;
|
|
1705
|
+
PrevNode(): DiagramNode;
|
|
1706
|
+
readonly Parent: object | any;
|
|
1707
|
+
readonly Children: DiagramNodeChildren;
|
|
1708
|
+
readonly Shape: Shape;
|
|
1709
|
+
readonly Root: DiagramNode;
|
|
1710
|
+
readonly Diagram: Diagram;
|
|
1711
|
+
Layout: MsoOrgChartLayoutType;
|
|
1712
|
+
readonly TextShape: Shape;
|
|
1713
|
+
}
|
|
1714
|
+
interface DiagramNodeChildren{
|
|
1715
|
+
readonly Application: object | any;
|
|
1716
|
+
readonly Creator: number;
|
|
1717
|
+
Item(Index: any): DiagramNode;
|
|
1718
|
+
AddNode(Index?: any, NodeType?: MsoDiagramNodeType): DiagramNode;
|
|
1719
|
+
SelectAll(): void;
|
|
1720
|
+
readonly Parent: object | any;
|
|
1721
|
+
readonly Count: number;
|
|
1722
|
+
readonly FirstChild: DiagramNode;
|
|
1723
|
+
readonly LastChild: DiagramNode;
|
|
1724
|
+
}
|
|
1725
|
+
interface DiagramNodes{
|
|
1726
|
+
readonly Application: object | any;
|
|
1727
|
+
readonly Creator: number;
|
|
1728
|
+
Item(Index: any): DiagramNode;
|
|
1729
|
+
SelectAll(): void;
|
|
1730
|
+
readonly Parent: object | any;
|
|
1731
|
+
readonly Count: number;
|
|
1732
|
+
}
|
|
1733
|
+
interface Diagram{
|
|
1734
|
+
readonly Application: object | any;
|
|
1735
|
+
readonly Creator: number;
|
|
1736
|
+
readonly Parent: object | any;
|
|
1737
|
+
readonly Nodes: DiagramNodes;
|
|
1738
|
+
readonly Type: MsoDiagramType;
|
|
1739
|
+
AutoLayout: MsoTriState;
|
|
1740
|
+
Reverse: MsoTriState;
|
|
1741
|
+
AutoFormat: MsoTriState;
|
|
1742
|
+
Convert(Type: MsoDiagramType): void;
|
|
1743
|
+
FitText(): void;
|
|
1744
|
+
}
|
|
1745
|
+
interface TimeLine{
|
|
1746
|
+
readonly Application: Application;
|
|
1747
|
+
readonly Parent: object | any;
|
|
1748
|
+
readonly MainSequence: Sequence;
|
|
1749
|
+
readonly InteractiveSequences: Sequences;
|
|
1750
|
+
}
|
|
1751
|
+
interface Sequences{
|
|
1752
|
+
readonly Application: Application;
|
|
1753
|
+
readonly Parent: object | any;
|
|
1754
|
+
Item(Index: number): Sequence;
|
|
1755
|
+
Add(Index?: number): Sequence;
|
|
1756
|
+
}
|
|
1757
|
+
interface Sequence{
|
|
1758
|
+
readonly Application: Application;
|
|
1759
|
+
readonly Parent: object | any;
|
|
1760
|
+
Item(Index: number): Effect;
|
|
1761
|
+
AddEffect(Shape: Shape, effectId: MsoAnimEffect, Level?: MsoAnimateByLevel, trigger?: MsoAnimTriggerType, Index?: number): Effect;
|
|
1762
|
+
Clone(Effect: Effect, Index?: number): Effect;
|
|
1763
|
+
FindFirstAnimationFor(Shape: Shape): Effect;
|
|
1764
|
+
FindFirstAnimationForClick(click: number): Effect;
|
|
1765
|
+
ConvertToBuildLevel(Effect: Effect, Level: MsoAnimateByLevel): Effect;
|
|
1766
|
+
ConvertToAfterEffect(Effect: Effect, After: MsoAnimAfterEffect, DimColor?: number, DimSchemeColor?: PpColorSchemeIndex): Effect;
|
|
1767
|
+
ConvertToAnimateBackground(Effect: Effect, AnimateBackground: MsoTriState): Effect;
|
|
1768
|
+
ConvertToAnimateInReverse(Effect: Effect, animateInReverse: MsoTriState): Effect;
|
|
1769
|
+
ConvertToTextUnitEffect(Effect: Effect, unitEffect: MsoAnimTextUnitEffect): Effect;
|
|
1770
|
+
AddTriggerEffect(pShape: Shape, effectId: MsoAnimEffect, trigger: MsoAnimTriggerType, pTriggerShape: Shape, bookmark?: string, Level?: MsoAnimateByLevel): Effect;
|
|
1771
|
+
}
|
|
1772
|
+
interface Effect{
|
|
1773
|
+
readonly Application: Application;
|
|
1774
|
+
readonly Parent: object | any;
|
|
1775
|
+
Shape: Shape;
|
|
1776
|
+
MoveTo(toPos: number): void;
|
|
1777
|
+
MoveBefore(Effect: Effect): void;
|
|
1778
|
+
MoveAfter(Effect: Effect): void;
|
|
1779
|
+
Delete(): void;
|
|
1780
|
+
readonly Index: number;
|
|
1781
|
+
readonly Timing: Timing;
|
|
1782
|
+
EffectType: MsoAnimEffect;
|
|
1783
|
+
readonly EffectParameters: EffectParameters;
|
|
1784
|
+
readonly TextRangeStart: number;
|
|
1785
|
+
readonly TextRangeLength: number;
|
|
1786
|
+
Paragraph: number;
|
|
1787
|
+
readonly DisplayName: string;
|
|
1788
|
+
Exit: MsoTriState;
|
|
1789
|
+
readonly Behaviors: AnimationBehaviors;
|
|
1790
|
+
readonly EffectInformation: EffectInformation;
|
|
1791
|
+
}
|
|
1792
|
+
interface Timing{
|
|
1793
|
+
readonly Application: Application;
|
|
1794
|
+
readonly Parent: object | any;
|
|
1795
|
+
Duration: number;
|
|
1796
|
+
TriggerType: MsoAnimTriggerType;
|
|
1797
|
+
TriggerDelayTime: number;
|
|
1798
|
+
TriggerShape: Shape;
|
|
1799
|
+
RepeatCount: number;
|
|
1800
|
+
RepeatDuration: number;
|
|
1801
|
+
Speed: number;
|
|
1802
|
+
Accelerate: number;
|
|
1803
|
+
Decelerate: number;
|
|
1804
|
+
AutoReverse: MsoTriState;
|
|
1805
|
+
SmoothStart: MsoTriState;
|
|
1806
|
+
SmoothEnd: MsoTriState;
|
|
1807
|
+
RewindAtEnd: MsoTriState;
|
|
1808
|
+
Restart: MsoAnimEffectRestart;
|
|
1809
|
+
BounceEnd: MsoTriState;
|
|
1810
|
+
BounceEndIntensity: number;
|
|
1811
|
+
TriggerBookmark: string;
|
|
1812
|
+
}
|
|
1813
|
+
interface EffectParameters{
|
|
1814
|
+
readonly Application: Application;
|
|
1815
|
+
readonly Parent: object | any;
|
|
1816
|
+
Direction: MsoAnimDirection;
|
|
1817
|
+
Amount: number;
|
|
1818
|
+
Size: number;
|
|
1819
|
+
readonly Color2: ColorFormat;
|
|
1820
|
+
Relative: MsoTriState;
|
|
1821
|
+
FontName: string;
|
|
1822
|
+
}
|
|
1823
|
+
interface EffectInformation{
|
|
1824
|
+
readonly Application: Application;
|
|
1825
|
+
readonly Parent: object | any;
|
|
1826
|
+
readonly AfterEffect: MsoAnimAfterEffect;
|
|
1827
|
+
readonly AnimateBackground: MsoTriState;
|
|
1828
|
+
readonly AnimateTextInReverse: MsoTriState;
|
|
1829
|
+
readonly BuildByLevelEffect: MsoAnimateByLevel;
|
|
1830
|
+
readonly Dim: ColorFormat;
|
|
1831
|
+
readonly PlaySettings: PlaySettings;
|
|
1832
|
+
readonly SoundEffect: SoundEffect;
|
|
1833
|
+
readonly TextUnitEffect: MsoAnimTextUnitEffect;
|
|
1834
|
+
}
|
|
1835
|
+
interface AnimationBehaviors{
|
|
1836
|
+
readonly Application: Application;
|
|
1837
|
+
readonly Parent: object | any;
|
|
1838
|
+
Item(Index: number): AnimationBehavior;
|
|
1839
|
+
Add(Type: MsoAnimType, Index?: number): AnimationBehavior;
|
|
1840
|
+
}
|
|
1841
|
+
interface AnimationBehavior{
|
|
1842
|
+
readonly Application: Application;
|
|
1843
|
+
readonly Parent: object | any;
|
|
1844
|
+
Additive: MsoAnimAdditive;
|
|
1845
|
+
Accumulate: MsoAnimAccumulate;
|
|
1846
|
+
Type: MsoAnimType;
|
|
1847
|
+
readonly MotionEffect: MotionEffect;
|
|
1848
|
+
readonly ColorEffect: ColorEffect;
|
|
1849
|
+
readonly ScaleEffect: ScaleEffect;
|
|
1850
|
+
readonly RotationEffect: RotationEffect;
|
|
1851
|
+
readonly PropertyEffect: PropertyEffect;
|
|
1852
|
+
readonly Timing: Timing;
|
|
1853
|
+
Delete(): void;
|
|
1854
|
+
readonly CommandEffect: CommandEffect;
|
|
1855
|
+
readonly FilterEffect: FilterEffect;
|
|
1856
|
+
readonly SetEffect: SetEffect;
|
|
1857
|
+
}
|
|
1858
|
+
interface MotionEffect{
|
|
1859
|
+
readonly Application: Application;
|
|
1860
|
+
readonly Parent: object | any;
|
|
1861
|
+
ByX: number;
|
|
1862
|
+
ByY: number;
|
|
1863
|
+
FromX: number;
|
|
1864
|
+
FromY: number;
|
|
1865
|
+
ToX: number;
|
|
1866
|
+
ToY: number;
|
|
1867
|
+
Path: string;
|
|
1868
|
+
}
|
|
1869
|
+
interface ColorEffect{
|
|
1870
|
+
readonly Application: Application;
|
|
1871
|
+
readonly Parent: object | any;
|
|
1872
|
+
readonly By: ColorFormat;
|
|
1873
|
+
readonly From: ColorFormat;
|
|
1874
|
+
readonly To: ColorFormat;
|
|
1875
|
+
}
|
|
1876
|
+
interface ScaleEffect{
|
|
1877
|
+
readonly Application: Application;
|
|
1878
|
+
readonly Parent: object | any;
|
|
1879
|
+
ByX: number;
|
|
1880
|
+
ByY: number;
|
|
1881
|
+
FromX: number;
|
|
1882
|
+
FromY: number;
|
|
1883
|
+
ToX: number;
|
|
1884
|
+
ToY: number;
|
|
1885
|
+
}
|
|
1886
|
+
interface RotationEffect{
|
|
1887
|
+
readonly Application: Application;
|
|
1888
|
+
readonly Parent: object | any;
|
|
1889
|
+
By: number;
|
|
1890
|
+
From: number;
|
|
1891
|
+
To: number;
|
|
1892
|
+
}
|
|
1893
|
+
interface PropertyEffect{
|
|
1894
|
+
readonly Application: Application;
|
|
1895
|
+
readonly Parent: object | any;
|
|
1896
|
+
Property: MsoAnimProperty;
|
|
1897
|
+
readonly Points: AnimationPoints;
|
|
1898
|
+
From: any;
|
|
1899
|
+
To: any;
|
|
1900
|
+
}
|
|
1901
|
+
interface AnimationPoints{
|
|
1902
|
+
readonly Application: Application;
|
|
1903
|
+
readonly Parent: object | any;
|
|
1904
|
+
Item(Index: number): AnimationPoint;
|
|
1905
|
+
Add(Index?: number): AnimationPoint;
|
|
1906
|
+
Smooth: MsoTriState;
|
|
1907
|
+
}
|
|
1908
|
+
interface AnimationPoint{
|
|
1909
|
+
readonly Application: Application;
|
|
1910
|
+
readonly Parent: object | any;
|
|
1911
|
+
Delete(): void;
|
|
1912
|
+
Time: number;
|
|
1913
|
+
Value: any;
|
|
1914
|
+
Formula: string;
|
|
1915
|
+
}
|
|
1916
|
+
interface CanvasShapes{
|
|
1917
|
+
readonly Application: object | any;
|
|
1918
|
+
readonly Creator: number;
|
|
1919
|
+
readonly Parent: object | any;
|
|
1920
|
+
readonly Count: number;
|
|
1921
|
+
Item(Index: any): Shape;
|
|
1922
|
+
AddCallout(Type: MsoCalloutType, Left: number, Top: number, Width: number, Height: number): Shape;
|
|
1923
|
+
AddConnector(Type: MsoConnectorType, BeginX: number, BeginY: number, EndX: number, EndY: number): Shape;
|
|
1924
|
+
AddCurve(SafeArrayOfPoints: any): Shape;
|
|
1925
|
+
AddLabel(Orientation: MsoTextOrientation, Left: number, Top: number, Width: number, Height: number): Shape;
|
|
1926
|
+
AddLine(BeginX: number, BeginY: number, EndX: number, EndY: number): Shape;
|
|
1927
|
+
AddPicture(FileName: string, LinkToFile: MsoTriState, SaveWithDocument: MsoTriState, Left: number, Top: number, Width?: number, Height?: number): Shape;
|
|
1928
|
+
AddPolyline(SafeArrayOfPoints: any): Shape;
|
|
1929
|
+
AddShape(Type: MsoAutoShapeType, Left: number, Top: number, Width: number, Height: number): Shape;
|
|
1930
|
+
AddTextEffect(PresetTextEffect: MsoPresetTextEffect, Text: string, FontName: string, FontSize: number, FontBold: MsoTriState, FontItalic: MsoTriState, Left: number, Top: number): Shape;
|
|
1931
|
+
AddTextbox(Orientation: MsoTextOrientation, Left: number, Top: number, Width: number, Height: number): Shape;
|
|
1932
|
+
BuildFreeform(EditingType: MsoEditingType, X1: number, Y1: number): FreeformBuilder;
|
|
1933
|
+
Range(Index: any): ShapeRange;
|
|
1934
|
+
SelectAll(): void;
|
|
1935
|
+
readonly Background: Shape;
|
|
1936
|
+
}
|
|
1937
|
+
interface AutoCorrect{
|
|
1938
|
+
DisplayAutoCorrectOptions: boolean;
|
|
1939
|
+
DisplayAutoLayoutOptions: boolean;
|
|
1940
|
+
}
|
|
1941
|
+
interface Options{
|
|
1942
|
+
DisplayPasteOptions: MsoTriState;
|
|
1943
|
+
DoNotPromptForConvert: MsoTriState;
|
|
1944
|
+
ShowCoauthoringMergeChanges: boolean;
|
|
1945
|
+
}
|
|
1946
|
+
interface CommandEffect{
|
|
1947
|
+
readonly Application: Application;
|
|
1948
|
+
readonly Parent: object | any;
|
|
1949
|
+
Type: MsoAnimCommandType;
|
|
1950
|
+
Command: string;
|
|
1951
|
+
bookmark: string;
|
|
1952
|
+
}
|
|
1953
|
+
interface FilterEffect{
|
|
1954
|
+
readonly Application: Application;
|
|
1955
|
+
readonly Parent: object | any;
|
|
1956
|
+
Type: MsoAnimFilterEffectType;
|
|
1957
|
+
Subtype: MsoAnimFilterEffectSubtype;
|
|
1958
|
+
Reveal: MsoTriState;
|
|
1959
|
+
}
|
|
1960
|
+
interface SetEffect{
|
|
1961
|
+
readonly Application: Application;
|
|
1962
|
+
readonly Parent: object | any;
|
|
1963
|
+
Property: MsoAnimProperty;
|
|
1964
|
+
To: any;
|
|
1965
|
+
}
|
|
1966
|
+
interface CustomLayouts{
|
|
1967
|
+
readonly Application: Application;
|
|
1968
|
+
readonly Parent: object | any;
|
|
1969
|
+
Item(Index: any): CustomLayout;
|
|
1970
|
+
Add(Index: number): CustomLayout;
|
|
1971
|
+
Paste(Index?: number): CustomLayout;
|
|
1972
|
+
}
|
|
1973
|
+
interface CustomLayout{
|
|
1974
|
+
readonly Application: Application;
|
|
1975
|
+
readonly Parent: object | any;
|
|
1976
|
+
readonly Shapes: Shapes;
|
|
1977
|
+
readonly HeadersFooters: HeadersFooters;
|
|
1978
|
+
readonly Background: ShapeRange;
|
|
1979
|
+
Name: string;
|
|
1980
|
+
Delete(): void;
|
|
1981
|
+
readonly Height: number;
|
|
1982
|
+
readonly Width: number;
|
|
1983
|
+
readonly Hyperlinks: Hyperlinks;
|
|
1984
|
+
readonly Design: Design;
|
|
1985
|
+
readonly TimeLine: TimeLine;
|
|
1986
|
+
readonly SlideShowTransition: SlideShowTransition;
|
|
1987
|
+
MatchingName: string;
|
|
1988
|
+
Preserved: MsoTriState;
|
|
1989
|
+
readonly Index: number;
|
|
1990
|
+
Select(): void;
|
|
1991
|
+
Cut(): void;
|
|
1992
|
+
Copy(): void;
|
|
1993
|
+
MoveTo(toPos: number): void;
|
|
1994
|
+
DisplayMasterShapes: MsoTriState;
|
|
1995
|
+
FollowMasterBackground: MsoTriState;
|
|
1996
|
+
readonly ThemeColorScheme: ThemeColorScheme;
|
|
1997
|
+
readonly CustomerData: CustomerData;
|
|
1998
|
+
readonly Guides: Guides;
|
|
1999
|
+
}
|
|
2000
|
+
interface TableStyle{
|
|
2001
|
+
readonly Name: string;
|
|
2002
|
+
readonly Id: string;
|
|
2003
|
+
}
|
|
2004
|
+
interface CustomerData{
|
|
2005
|
+
readonly Application: Application;
|
|
2006
|
+
readonly Parent: object | any;
|
|
2007
|
+
Item(Id: string): CustomXMLPart;
|
|
2008
|
+
Add(): CustomXMLPart;
|
|
2009
|
+
Delete(Id: string): void;
|
|
2010
|
+
}
|
|
2011
|
+
interface Research{
|
|
2012
|
+
readonly Application: Application;
|
|
2013
|
+
readonly Parent: object | any;
|
|
2014
|
+
Query(ServiceID: string, QueryString?: any, QueryLanguage?: any, UseSelection?: boolean, LaunchQuery?: boolean): void;
|
|
2015
|
+
SetLanguagePair(Language1: any, Language2: any): void;
|
|
2016
|
+
IsResearchService(ServiceID: string): boolean;
|
|
2017
|
+
}
|
|
2018
|
+
interface TableBackground{
|
|
2019
|
+
readonly Fill: FillFormat;
|
|
2020
|
+
readonly Picture: PictureFormat;
|
|
2021
|
+
readonly Reflection: ReflectionFormat;
|
|
2022
|
+
readonly Shadow: ShadowFormat;
|
|
2023
|
+
}
|
|
2024
|
+
interface TextFrame2{
|
|
2025
|
+
readonly Application: object | any;
|
|
2026
|
+
readonly Creator: number;
|
|
2027
|
+
readonly Parent: object | any;
|
|
2028
|
+
MarginBottom: number;
|
|
2029
|
+
MarginLeft: number;
|
|
2030
|
+
MarginRight: number;
|
|
2031
|
+
MarginTop: number;
|
|
2032
|
+
Orientation: MsoTextOrientation;
|
|
2033
|
+
HorizontalAnchor: MsoHorizontalAnchor;
|
|
2034
|
+
VerticalAnchor: MsoVerticalAnchor;
|
|
2035
|
+
PathFormat: MsoPathFormat;
|
|
2036
|
+
WarpFormat: MsoWarpFormat;
|
|
2037
|
+
WordArtFormat: MsoPresetTextEffect;
|
|
2038
|
+
WordWrap: MsoTriState;
|
|
2039
|
+
AutoSize: MsoAutoSize;
|
|
2040
|
+
readonly ThreeD: ThreeDFormat;
|
|
2041
|
+
readonly HasText: MsoTriState;
|
|
2042
|
+
readonly TextRange: TextRange2;
|
|
2043
|
+
readonly Column: TextColumn2;
|
|
2044
|
+
readonly Ruler: Ruler2;
|
|
2045
|
+
DeleteText(): void;
|
|
2046
|
+
NoTextRotation: MsoTriState;
|
|
2047
|
+
}
|
|
2048
|
+
interface FileConverters{
|
|
2049
|
+
Item(Index: any): FileConverter;
|
|
2050
|
+
}
|
|
2051
|
+
interface FileConverter{
|
|
2052
|
+
readonly Application: Application;
|
|
2053
|
+
readonly CanOpen: boolean;
|
|
2054
|
+
readonly CanSave: boolean;
|
|
2055
|
+
readonly ClassName: string;
|
|
2056
|
+
readonly Creator: FileConverters;
|
|
2057
|
+
readonly Extensions: string;
|
|
2058
|
+
readonly FormatName: string;
|
|
2059
|
+
readonly Name: string;
|
|
2060
|
+
readonly Parent: FileConverters;
|
|
2061
|
+
readonly Path: string;
|
|
2062
|
+
readonly OpenFormat: number;
|
|
2063
|
+
readonly SaveFormat: number;
|
|
2064
|
+
}
|
|
2065
|
+
interface Axes{
|
|
2066
|
+
readonly Count: number;
|
|
2067
|
+
readonly Creator: number;
|
|
2068
|
+
readonly Parent: object | any;
|
|
2069
|
+
readonly Application: Application;
|
|
2070
|
+
Item(Type: XlAxisType, AxisGroup?: XlAxisGroup): Axis;
|
|
2071
|
+
}
|
|
2072
|
+
interface Axis{
|
|
2073
|
+
AxisBetweenCategories: boolean;
|
|
2074
|
+
readonly AxisGroup: XlAxisGroup;
|
|
2075
|
+
readonly AxisTitle: AxisTitle;
|
|
2076
|
+
CategoryNames: any;
|
|
2077
|
+
Crosses: XlAxisCrosses;
|
|
2078
|
+
CrossesAt: number;
|
|
2079
|
+
Delete(): any;
|
|
2080
|
+
HasMajorGridlines: boolean;
|
|
2081
|
+
HasMinorGridlines: boolean;
|
|
2082
|
+
HasTitle: boolean;
|
|
2083
|
+
readonly MajorGridlines: Gridlines;
|
|
2084
|
+
MajorTickMark: XlTickMark;
|
|
2085
|
+
MajorUnit: number;
|
|
2086
|
+
LogBase: number;
|
|
2087
|
+
TickLabelSpacingIsAuto: boolean;
|
|
2088
|
+
MajorUnitIsAuto: boolean;
|
|
2089
|
+
MaximumScale: number;
|
|
2090
|
+
MaximumScaleIsAuto: boolean;
|
|
2091
|
+
MinimumScale: number;
|
|
2092
|
+
MinimumScaleIsAuto: boolean;
|
|
2093
|
+
readonly MinorGridlines: Gridlines;
|
|
2094
|
+
MinorTickMark: XlTickMark;
|
|
2095
|
+
MinorUnit: number;
|
|
2096
|
+
MinorUnitIsAuto: boolean;
|
|
2097
|
+
ReversePlotOrder: boolean;
|
|
2098
|
+
ScaleType: XlScaleType;
|
|
2099
|
+
Select(): any;
|
|
2100
|
+
TickLabelPosition: XlTickLabelPosition;
|
|
2101
|
+
readonly TickLabels: TickLabels;
|
|
2102
|
+
TickLabelSpacing: number;
|
|
2103
|
+
TickMarkSpacing: number;
|
|
2104
|
+
Type: XlAxisType;
|
|
2105
|
+
BaseUnit: XlTimeUnit;
|
|
2106
|
+
BaseUnitIsAuto: boolean;
|
|
2107
|
+
MajorUnitScale: XlTimeUnit;
|
|
2108
|
+
MinorUnitScale: XlTimeUnit;
|
|
2109
|
+
CategoryType: XlCategoryType;
|
|
2110
|
+
readonly Left: number;
|
|
2111
|
+
readonly Top: number;
|
|
2112
|
+
readonly Width: number;
|
|
2113
|
+
readonly Height: number;
|
|
2114
|
+
DisplayUnit: XlDisplayUnit;
|
|
2115
|
+
DisplayUnitCustom: number;
|
|
2116
|
+
HasDisplayUnitLabel: boolean;
|
|
2117
|
+
readonly DisplayUnitLabel: DisplayUnitLabel;
|
|
2118
|
+
readonly Border: ChartBorder;
|
|
2119
|
+
readonly Format: ChartFormat;
|
|
2120
|
+
readonly Creator: number;
|
|
2121
|
+
readonly Parent: object | any;
|
|
2122
|
+
readonly Application: Application;
|
|
2123
|
+
CategorySortOrder: XlCategorySortOrder;
|
|
2124
|
+
GetProperty(Id: string): any;
|
|
2125
|
+
SetProperty(Id: string, Value: any): void;
|
|
2126
|
+
}
|
|
2127
|
+
interface AxisTitle{
|
|
2128
|
+
Caption: string;
|
|
2129
|
+
Characters(Start?: any, Length?: any): ChartCharacters;
|
|
2130
|
+
readonly Font: ChartFont;
|
|
2131
|
+
HorizontalAlignment: any;
|
|
2132
|
+
Left: number;
|
|
2133
|
+
Orientation: any;
|
|
2134
|
+
Shadow: boolean;
|
|
2135
|
+
Text: string;
|
|
2136
|
+
Top: number;
|
|
2137
|
+
VerticalAlignment: any;
|
|
2138
|
+
AutoScaleFont: any;
|
|
2139
|
+
readonly Interior: Interior;
|
|
2140
|
+
readonly Fill: ChartFillFormat;
|
|
2141
|
+
Delete(): any;
|
|
2142
|
+
readonly Border: ChartBorder;
|
|
2143
|
+
readonly Name: string;
|
|
2144
|
+
readonly Parent: object | any;
|
|
2145
|
+
Select(): any;
|
|
2146
|
+
IncludeInLayout: boolean;
|
|
2147
|
+
Position: XlChartElementPosition;
|
|
2148
|
+
readonly Format: ChartFormat;
|
|
2149
|
+
readonly Creator: number;
|
|
2150
|
+
readonly Application: Application;
|
|
2151
|
+
ReadingOrder: number;
|
|
2152
|
+
readonly Height: number;
|
|
2153
|
+
readonly Width: number;
|
|
2154
|
+
Formula: string;
|
|
2155
|
+
FormulaR1C1: string;
|
|
2156
|
+
FormulaLocal: string;
|
|
2157
|
+
FormulaR1C1Local: string;
|
|
2158
|
+
GetProperty(Id: string): any;
|
|
2159
|
+
SetProperty(Id: string, Value: any): void;
|
|
2160
|
+
}
|
|
2161
|
+
interface Chart{
|
|
2162
|
+
readonly Parent: object | any;
|
|
2163
|
+
ApplyDataLabels(Type?: XlDataLabelsType, LegendKey?: any, AutoText?: any, HasLeaderLines?: any, ShowSeriesName?: any, ShowCategoryName?: any, ShowValue?: any, ShowPercentage?: any, ShowBubbleSize?: any, Separator?: any): void;
|
|
2164
|
+
ChartType: XlChartType;
|
|
2165
|
+
HasDataTable: boolean;
|
|
2166
|
+
ApplyCustomType(ChartType: XlChartType, TypeName?: any): void;
|
|
2167
|
+
GetChartElement(X: number, Y: number, ElementID: number, Arg1: number, Arg2: number): void;
|
|
2168
|
+
SetSourceData(Source: string, PlotBy?: any): void;
|
|
2169
|
+
PlotBy: XlRowCol;
|
|
2170
|
+
AutoFormat(Gallery: number, Format?: any): void;
|
|
2171
|
+
SetBackgroundPicture(FileName: string): void;
|
|
2172
|
+
readonly DataTable: DataTable;
|
|
2173
|
+
Paste(Type?: any): void;
|
|
2174
|
+
BarShape: XlBarShape;
|
|
2175
|
+
SetDefaultChart(Name: any): void;
|
|
2176
|
+
ApplyChartTemplate(FileName: string): void;
|
|
2177
|
+
SaveChartTemplate(FileName: string): void;
|
|
2178
|
+
readonly SideWall: Walls;
|
|
2179
|
+
readonly BackWall: Walls;
|
|
2180
|
+
ChartStyle: any;
|
|
2181
|
+
ClearToMatchStyle(): void;
|
|
2182
|
+
HasPivotFields: boolean;
|
|
2183
|
+
ShowDataLabelsOverMaximum: boolean;
|
|
2184
|
+
ApplyLayout(Layout: number, ChartType?: any): void;
|
|
2185
|
+
Refresh(): void;
|
|
2186
|
+
readonly ChartData: ChartData;
|
|
2187
|
+
readonly Shapes: Shapes;
|
|
2188
|
+
readonly Creator: number;
|
|
2189
|
+
readonly Area3DGroup: ChartGroup;
|
|
2190
|
+
AreaGroups(Index?: any): object | any;
|
|
2191
|
+
readonly Bar3DGroup: ChartGroup;
|
|
2192
|
+
BarGroups(Index?: any): object | any;
|
|
2193
|
+
readonly Column3DGroup: ChartGroup;
|
|
2194
|
+
ColumnGroups(Index?: any): object | any;
|
|
2195
|
+
readonly Line3DGroup: ChartGroup;
|
|
2196
|
+
LineGroups(Index?: any): object | any;
|
|
2197
|
+
readonly Pie3DGroup: ChartGroup;
|
|
2198
|
+
PieGroups(Index?: any): object | any;
|
|
2199
|
+
DoughnutGroups(Index?: any): object | any;
|
|
2200
|
+
RadarGroups(Index?: any): object | any;
|
|
2201
|
+
readonly SurfaceGroup: ChartGroup;
|
|
2202
|
+
XYGroups(Index?: any): object | any;
|
|
2203
|
+
readonly Application: Application;
|
|
2204
|
+
_ApplyDataLabels(Type?: XlDataLabelsType, LegendKey?: any, AutoText?: any, HasLeaderLines?: any): void;
|
|
2205
|
+
AutoScaling: boolean;
|
|
2206
|
+
Axes(Type?: any, AxisGroup?: XlAxisGroup): object | any;
|
|
2207
|
+
readonly ChartArea: ChartArea;
|
|
2208
|
+
ChartGroups(Index?: any): object | any;
|
|
2209
|
+
readonly ChartTitle: ChartTitle;
|
|
2210
|
+
ChartWizard(Source?: any, Gallery?: any, Format?: any, PlotBy?: any, CategoryLabels?: any, SeriesLabels?: any, HasLegend?: any, Title?: any, CategoryTitle?: any, ValueTitle?: any, ExtraTitle?: any): void;
|
|
2211
|
+
Copy(Before?: any, After?: any): void;
|
|
2212
|
+
CopyPicture(Appearance?: XlPictureAppearance, Format?: XlCopyPictureFormat, Size?: XlPictureAppearance): void;
|
|
2213
|
+
readonly Corners: Corners;
|
|
2214
|
+
Delete(): void;
|
|
2215
|
+
DepthPercent: number;
|
|
2216
|
+
DisplayBlanksAs: XlDisplayBlanksAs;
|
|
2217
|
+
Elevation: number;
|
|
2218
|
+
Export(FileName: string, FilterName?: any, Interactive?: any): boolean;
|
|
2219
|
+
readonly Floor: Floor;
|
|
2220
|
+
GapDepth: number;
|
|
2221
|
+
HasAxis(Index1?: any, Index2?: any, RHS?: any): void;
|
|
2222
|
+
HasLegend: boolean;
|
|
2223
|
+
HasTitle: boolean;
|
|
2224
|
+
HeightPercent: number;
|
|
2225
|
+
readonly Legend: Legend;
|
|
2226
|
+
Name: string;
|
|
2227
|
+
Perspective: number;
|
|
2228
|
+
readonly PlotArea: PlotArea;
|
|
2229
|
+
PlotVisibleOnly: boolean;
|
|
2230
|
+
RightAngleAxes: any;
|
|
2231
|
+
Rotation: any;
|
|
2232
|
+
Select(Replace?: any): void;
|
|
2233
|
+
SeriesCollection(Index?: any): object | any;
|
|
2234
|
+
SetElement(Element: MsoChartElementType): void;
|
|
2235
|
+
Subtype: number;
|
|
2236
|
+
Type: number;
|
|
2237
|
+
readonly Walls: Walls;
|
|
2238
|
+
readonly Format: ChartFormat;
|
|
2239
|
+
ShowReportFilterFieldButtons: boolean;
|
|
2240
|
+
ShowLegendFieldButtons: boolean;
|
|
2241
|
+
ShowAxisFieldButtons: boolean;
|
|
2242
|
+
ShowValueFieldButtons: boolean;
|
|
2243
|
+
ShowAllFieldButtons: boolean;
|
|
2244
|
+
AlternativeText: string;
|
|
2245
|
+
Title: string;
|
|
2246
|
+
FullSeriesCollection(Index?: any): object | any;
|
|
2247
|
+
CategoryLabelLevel: XlCategoryLabelLevel;
|
|
2248
|
+
SeriesNameLevel: XlSeriesNameLevel;
|
|
2249
|
+
readonly HasHiddenContent: boolean;
|
|
2250
|
+
DeleteHiddenContent(): void;
|
|
2251
|
+
ChartColor: any;
|
|
2252
|
+
ClearToMatchColorStyle(): void;
|
|
2253
|
+
GetProperty(Id: string): any;
|
|
2254
|
+
SetProperty(Id: string, Value: any): void;
|
|
2255
|
+
}
|
|
2256
|
+
interface ChartBorder{
|
|
2257
|
+
Color: any;
|
|
2258
|
+
ColorIndex: any;
|
|
2259
|
+
LineStyle: any;
|
|
2260
|
+
Weight: any;
|
|
2261
|
+
readonly Creator: number;
|
|
2262
|
+
readonly Parent: object | any;
|
|
2263
|
+
readonly Application: Application;
|
|
2264
|
+
}
|
|
2265
|
+
interface ChartCharacters{
|
|
2266
|
+
readonly Parent: object | any;
|
|
2267
|
+
Caption: string;
|
|
2268
|
+
readonly Count: number;
|
|
2269
|
+
Delete(): any;
|
|
2270
|
+
readonly Font: ChartFont;
|
|
2271
|
+
Insert(String: string): any;
|
|
2272
|
+
Text: string;
|
|
2273
|
+
PhoneticCharacters: string;
|
|
2274
|
+
readonly Creator: number;
|
|
2275
|
+
readonly Application: Application;
|
|
2276
|
+
}
|
|
2277
|
+
interface ChartArea{
|
|
2278
|
+
readonly Name: string;
|
|
2279
|
+
Select(): any;
|
|
2280
|
+
readonly Parent: object | any;
|
|
2281
|
+
readonly Border: ChartBorder;
|
|
2282
|
+
Clear(): any;
|
|
2283
|
+
ClearContents(): any;
|
|
2284
|
+
Copy(): any;
|
|
2285
|
+
readonly Font: ChartFont;
|
|
2286
|
+
Shadow: boolean;
|
|
2287
|
+
ClearFormats(): any;
|
|
2288
|
+
Height: number;
|
|
2289
|
+
readonly Interior: Interior;
|
|
2290
|
+
readonly Fill: ChartFillFormat;
|
|
2291
|
+
Left: number;
|
|
2292
|
+
Top: number;
|
|
2293
|
+
Width: number;
|
|
2294
|
+
AutoScaleFont: any;
|
|
2295
|
+
readonly Format: ChartFormat;
|
|
2296
|
+
readonly Creator: number;
|
|
2297
|
+
readonly Application: Application;
|
|
2298
|
+
}
|
|
2299
|
+
interface ChartColorFormat{
|
|
2300
|
+
readonly Parent: object | any;
|
|
2301
|
+
SchemeColor: number;
|
|
2302
|
+
readonly Type: number;
|
|
2303
|
+
readonly Creator: number;
|
|
2304
|
+
readonly Application: Application;
|
|
2305
|
+
readonly RGB: number;
|
|
2306
|
+
}
|
|
2307
|
+
interface ChartData{
|
|
2308
|
+
readonly Workbook: object | any;
|
|
2309
|
+
Activate(): void;
|
|
2310
|
+
readonly IsLinked: boolean;
|
|
2311
|
+
BreakLink(): void;
|
|
2312
|
+
ActivateChartDataWindow(): void;
|
|
2313
|
+
}
|
|
2314
|
+
interface ChartFillFormat{
|
|
2315
|
+
Solid(): void;
|
|
2316
|
+
UserTextured(TextureFile: string): void;
|
|
2317
|
+
readonly BackColor: ChartColorFormat;
|
|
2318
|
+
readonly ForeColor: ChartColorFormat;
|
|
2319
|
+
readonly GradientDegree: number;
|
|
2320
|
+
readonly TextureName: string;
|
|
2321
|
+
readonly Creator: number;
|
|
2322
|
+
readonly Parent: object | any;
|
|
2323
|
+
readonly Application: Application;
|
|
2324
|
+
OneColorGradient(Style: MsoGradientStyle, Variant: number, Degree: number): void;
|
|
2325
|
+
readonly GradientColorType: MsoGradientColorType;
|
|
2326
|
+
readonly GradientStyle: MsoGradientStyle;
|
|
2327
|
+
readonly GradientVariant: number;
|
|
2328
|
+
readonly Pattern: MsoPatternType;
|
|
2329
|
+
Patterned(Pattern: MsoPatternType): void;
|
|
2330
|
+
PresetGradient(Style: MsoGradientStyle, Variant: number, PresetGradientType: MsoPresetGradientType): void;
|
|
2331
|
+
readonly PresetGradientType: MsoPresetGradientType;
|
|
2332
|
+
readonly PresetTexture: MsoPresetTexture;
|
|
2333
|
+
PresetTextured(PresetTexture: MsoPresetTexture): void;
|
|
2334
|
+
readonly TextureType: MsoTextureType;
|
|
2335
|
+
TwoColorGradient(Style: MsoGradientStyle, Variant: number): void;
|
|
2336
|
+
readonly Type: MsoFillType;
|
|
2337
|
+
UserPicture(PictureFile?: any, PictureFormat?: any, PictureStackUnit?: any, PicturePlacement?: any): void;
|
|
2338
|
+
Visible: MsoTriState;
|
|
2339
|
+
}
|
|
2340
|
+
interface ChartFormat{
|
|
2341
|
+
readonly Fill: FillFormat;
|
|
2342
|
+
readonly Glow: GlowFormat;
|
|
2343
|
+
readonly Line: LineFormat;
|
|
2344
|
+
readonly Parent: object | any;
|
|
2345
|
+
readonly PictureFormat: PictureFormat;
|
|
2346
|
+
readonly Shadow: ShadowFormat;
|
|
2347
|
+
readonly SoftEdge: SoftEdgeFormat;
|
|
2348
|
+
readonly TextFrame2: TextFrame2;
|
|
2349
|
+
readonly ThreeD: ThreeDFormat;
|
|
2350
|
+
readonly Creator: number;
|
|
2351
|
+
readonly Application: Application;
|
|
2352
|
+
readonly Adjustments: Adjustments;
|
|
2353
|
+
AutoShapeType: MsoAutoShapeType;
|
|
2354
|
+
}
|
|
2355
|
+
interface ChartGroup{
|
|
2356
|
+
readonly DownBars: DownBars;
|
|
2357
|
+
readonly DropLines: DropLines;
|
|
2358
|
+
HasDropLines: boolean;
|
|
2359
|
+
HasHiLoLines: boolean;
|
|
2360
|
+
HasRadarAxisLabels: boolean;
|
|
2361
|
+
HasSeriesLines: boolean;
|
|
2362
|
+
HasUpDownBars: boolean;
|
|
2363
|
+
readonly HiLoLines: HiLoLines;
|
|
2364
|
+
SeriesCollection(Index?: any): object | any;
|
|
2365
|
+
readonly SeriesLines: SeriesLines;
|
|
2366
|
+
readonly UpBars: UpBars;
|
|
2367
|
+
VaryByCategories: boolean;
|
|
2368
|
+
SizeRepresents: XlSizeRepresents;
|
|
2369
|
+
ShowNegativeBubbles: boolean;
|
|
2370
|
+
SplitType: XlChartSplitType;
|
|
2371
|
+
SplitValue: any;
|
|
2372
|
+
Has3DShading: boolean;
|
|
2373
|
+
readonly Creator: number;
|
|
2374
|
+
readonly Parent: object | any;
|
|
2375
|
+
readonly Application: Application;
|
|
2376
|
+
AxisGroup: XlAxisGroup;
|
|
2377
|
+
BubbleScale: number;
|
|
2378
|
+
DoughnutHoleSize: number;
|
|
2379
|
+
FirstSliceAngle: number;
|
|
2380
|
+
GapWidth: number;
|
|
2381
|
+
readonly Index: number;
|
|
2382
|
+
Overlap: number;
|
|
2383
|
+
readonly RadarAxisLabels: TickLabels;
|
|
2384
|
+
Subtype: number;
|
|
2385
|
+
Type: number;
|
|
2386
|
+
SecondPlotSize: number;
|
|
2387
|
+
CategoryCollection(Index?: any): object | any;
|
|
2388
|
+
FullCategoryCollection(Index?: any): object | any;
|
|
2389
|
+
BinsType: XlBinsType;
|
|
2390
|
+
BinWidthValue: number;
|
|
2391
|
+
BinsCountValue: number;
|
|
2392
|
+
BinsOverflowEnabled: boolean;
|
|
2393
|
+
BinsOverflowValue: number;
|
|
2394
|
+
BinsUnderflowEnabled: boolean;
|
|
2395
|
+
BinsUnderflowValue: number;
|
|
2396
|
+
}
|
|
2397
|
+
interface ChartGroups{
|
|
2398
|
+
readonly Parent: object | any;
|
|
2399
|
+
readonly Count: number;
|
|
2400
|
+
Item(Index: any): ChartGroup;
|
|
2401
|
+
readonly Creator: number;
|
|
2402
|
+
readonly Application: Application;
|
|
2403
|
+
}
|
|
2404
|
+
interface ChartTitle{
|
|
2405
|
+
Caption: string;
|
|
2406
|
+
Characters(Start?: any, Length?: any): ChartCharacters;
|
|
2407
|
+
readonly Font: ChartFont;
|
|
2408
|
+
HorizontalAlignment: any;
|
|
2409
|
+
Left: number;
|
|
2410
|
+
Orientation: any;
|
|
2411
|
+
Shadow: boolean;
|
|
2412
|
+
Text: string;
|
|
2413
|
+
Top: number;
|
|
2414
|
+
VerticalAlignment: any;
|
|
2415
|
+
AutoScaleFont: any;
|
|
2416
|
+
readonly Interior: Interior;
|
|
2417
|
+
readonly Fill: ChartFillFormat;
|
|
2418
|
+
Delete(): any;
|
|
2419
|
+
readonly Border: ChartBorder;
|
|
2420
|
+
readonly Name: string;
|
|
2421
|
+
readonly Parent: object | any;
|
|
2422
|
+
Select(): any;
|
|
2423
|
+
IncludeInLayout: boolean;
|
|
2424
|
+
Position: XlChartElementPosition;
|
|
2425
|
+
readonly Format: ChartFormat;
|
|
2426
|
+
readonly Creator: number;
|
|
2427
|
+
readonly Application: Application;
|
|
2428
|
+
ReadingOrder: number;
|
|
2429
|
+
readonly Height: number;
|
|
2430
|
+
readonly Width: number;
|
|
2431
|
+
Formula: string;
|
|
2432
|
+
FormulaR1C1: string;
|
|
2433
|
+
FormulaLocal: string;
|
|
2434
|
+
FormulaR1C1Local: string;
|
|
2435
|
+
GetProperty(Id: string): any;
|
|
2436
|
+
SetProperty(Id: string, Value: any): void;
|
|
2437
|
+
}
|
|
2438
|
+
interface Corners{
|
|
2439
|
+
readonly Parent: object | any;
|
|
2440
|
+
readonly Name: string;
|
|
2441
|
+
Select(): any;
|
|
2442
|
+
readonly Creator: number;
|
|
2443
|
+
readonly Application: Application;
|
|
2444
|
+
}
|
|
2445
|
+
interface DataLabel{
|
|
2446
|
+
readonly Parent: object | any;
|
|
2447
|
+
readonly Name: string;
|
|
2448
|
+
Select(): any;
|
|
2449
|
+
readonly Border: ChartBorder;
|
|
2450
|
+
Delete(): any;
|
|
2451
|
+
readonly Interior: Interior;
|
|
2452
|
+
readonly Fill: ChartFillFormat;
|
|
2453
|
+
Caption: string;
|
|
2454
|
+
Characters(Start?: any, Length?: any): ChartCharacters;
|
|
2455
|
+
readonly Font: ChartFont;
|
|
2456
|
+
HorizontalAlignment: any;
|
|
2457
|
+
Left: number;
|
|
2458
|
+
Orientation: any;
|
|
2459
|
+
Shadow: boolean;
|
|
2460
|
+
Text: string;
|
|
2461
|
+
Top: number;
|
|
2462
|
+
VerticalAlignment: any;
|
|
2463
|
+
ReadingOrder: number;
|
|
2464
|
+
AutoScaleFont: any;
|
|
2465
|
+
AutoText: boolean;
|
|
2466
|
+
NumberFormat: string;
|
|
2467
|
+
NumberFormatLinked: boolean;
|
|
2468
|
+
NumberFormatLocal: any;
|
|
2469
|
+
ShowLegendKey: boolean;
|
|
2470
|
+
Type: any;
|
|
2471
|
+
Position: XlDataLabelPosition;
|
|
2472
|
+
ShowSeriesName: boolean;
|
|
2473
|
+
ShowCategoryName: boolean;
|
|
2474
|
+
ShowValue: boolean;
|
|
2475
|
+
ShowPercentage: boolean;
|
|
2476
|
+
ShowBubbleSize: boolean;
|
|
2477
|
+
Separator: any;
|
|
2478
|
+
readonly Format: ChartFormat;
|
|
2479
|
+
readonly Creator: number;
|
|
2480
|
+
readonly Application: Application;
|
|
2481
|
+
readonly _Height: number;
|
|
2482
|
+
readonly _Width: number;
|
|
2483
|
+
Formula: string;
|
|
2484
|
+
FormulaR1C1: string;
|
|
2485
|
+
FormulaLocal: string;
|
|
2486
|
+
FormulaR1C1Local: string;
|
|
2487
|
+
ShowRange: boolean;
|
|
2488
|
+
Height: number;
|
|
2489
|
+
Width: number;
|
|
2490
|
+
GetProperty(Id: string): any;
|
|
2491
|
+
SetProperty(Id: string, Value: any): void;
|
|
2492
|
+
}
|
|
2493
|
+
interface DataLabels{
|
|
2494
|
+
readonly Parent: object | any;
|
|
2495
|
+
readonly Name: string;
|
|
2496
|
+
Select(): any;
|
|
2497
|
+
readonly Border: ChartBorder;
|
|
2498
|
+
Delete(): any;
|
|
2499
|
+
readonly Interior: Interior;
|
|
2500
|
+
readonly Fill: ChartFillFormat;
|
|
2501
|
+
readonly Font: ChartFont;
|
|
2502
|
+
HorizontalAlignment: any;
|
|
2503
|
+
Orientation: any;
|
|
2504
|
+
Shadow: boolean;
|
|
2505
|
+
VerticalAlignment: any;
|
|
2506
|
+
ReadingOrder: number;
|
|
2507
|
+
AutoScaleFont: any;
|
|
2508
|
+
AutoText: boolean;
|
|
2509
|
+
NumberFormat: string;
|
|
2510
|
+
NumberFormatLinked: boolean;
|
|
2511
|
+
NumberFormatLocal: any;
|
|
2512
|
+
ShowLegendKey: boolean;
|
|
2513
|
+
Type: any;
|
|
2514
|
+
Position: XlDataLabelPosition;
|
|
2515
|
+
ShowSeriesName: boolean;
|
|
2516
|
+
ShowCategoryName: boolean;
|
|
2517
|
+
ShowValue: boolean;
|
|
2518
|
+
ShowPercentage: boolean;
|
|
2519
|
+
ShowBubbleSize: boolean;
|
|
2520
|
+
Separator: any;
|
|
2521
|
+
readonly Count: number;
|
|
2522
|
+
Item(Index: any): DataLabel;
|
|
2523
|
+
readonly Format: ChartFormat;
|
|
2524
|
+
readonly Creator: number;
|
|
2525
|
+
readonly Application: Application;
|
|
2526
|
+
Propagate(Index: any): void;
|
|
2527
|
+
ShowRange: boolean;
|
|
2528
|
+
GetProperty(Id: string): any;
|
|
2529
|
+
SetProperty(Id: string, Value: any): void;
|
|
2530
|
+
}
|
|
2531
|
+
interface DataTable{
|
|
2532
|
+
ShowLegendKey: boolean;
|
|
2533
|
+
HasBorderHorizontal: boolean;
|
|
2534
|
+
HasBorderVertical: boolean;
|
|
2535
|
+
HasBorderOutline: boolean;
|
|
2536
|
+
readonly Border: ChartBorder;
|
|
2537
|
+
readonly Font: ChartFont;
|
|
2538
|
+
Select(): void;
|
|
2539
|
+
Delete(): void;
|
|
2540
|
+
readonly Parent: object | any;
|
|
2541
|
+
AutoScaleFont: any;
|
|
2542
|
+
readonly Format: ChartFormat;
|
|
2543
|
+
readonly Creator: number;
|
|
2544
|
+
readonly Application: Application;
|
|
2545
|
+
}
|
|
2546
|
+
interface DisplayUnitLabel{
|
|
2547
|
+
Caption: string;
|
|
2548
|
+
Characters(Start?: any, Length?: any): ChartCharacters;
|
|
2549
|
+
readonly Font: ChartFont;
|
|
2550
|
+
HorizontalAlignment: any;
|
|
2551
|
+
Left: number;
|
|
2552
|
+
Orientation: any;
|
|
2553
|
+
Shadow: boolean;
|
|
2554
|
+
Text: string;
|
|
2555
|
+
Top: number;
|
|
2556
|
+
VerticalAlignment: any;
|
|
2557
|
+
AutoScaleFont: any;
|
|
2558
|
+
readonly Interior: Interior;
|
|
2559
|
+
readonly Fill: ChartFillFormat;
|
|
2560
|
+
Delete(): any;
|
|
2561
|
+
readonly Border: ChartBorder;
|
|
2562
|
+
readonly Name: string;
|
|
2563
|
+
readonly Parent: object | any;
|
|
2564
|
+
Select(): any;
|
|
2565
|
+
Position: XlChartElementPosition;
|
|
2566
|
+
readonly Format: ChartFormat;
|
|
2567
|
+
readonly Creator: number;
|
|
2568
|
+
readonly Application: Application;
|
|
2569
|
+
ReadingOrder: number;
|
|
2570
|
+
readonly Height: number;
|
|
2571
|
+
readonly Width: number;
|
|
2572
|
+
Formula: string;
|
|
2573
|
+
FormulaR1C1: string;
|
|
2574
|
+
FormulaLocal: string;
|
|
2575
|
+
FormulaR1C1Local: string;
|
|
2576
|
+
GetProperty(Id: string): any;
|
|
2577
|
+
SetProperty(Id: string, Value: any): void;
|
|
2578
|
+
}
|
|
2579
|
+
interface DownBars{
|
|
2580
|
+
readonly Name: string;
|
|
2581
|
+
Select(): any;
|
|
2582
|
+
readonly Parent: object | any;
|
|
2583
|
+
readonly Border: ChartBorder;
|
|
2584
|
+
Delete(): any;
|
|
2585
|
+
readonly Interior: Interior;
|
|
2586
|
+
readonly Fill: ChartFillFormat;
|
|
2587
|
+
readonly Format: ChartFormat;
|
|
2588
|
+
readonly Creator: number;
|
|
2589
|
+
readonly Application: Application;
|
|
2590
|
+
GetProperty(Id: string): any;
|
|
2591
|
+
SetProperty(Id: string, Value: any): void;
|
|
2592
|
+
}
|
|
2593
|
+
interface DropLines{
|
|
2594
|
+
readonly Name: string;
|
|
2595
|
+
readonly Parent: object | any;
|
|
2596
|
+
readonly Border: ChartBorder;
|
|
2597
|
+
readonly Format: ChartFormat;
|
|
2598
|
+
readonly Creator: number;
|
|
2599
|
+
readonly Application: Application;
|
|
2600
|
+
Delete(): any;
|
|
2601
|
+
Select(): any;
|
|
2602
|
+
}
|
|
2603
|
+
interface ErrorBars{
|
|
2604
|
+
readonly Parent: object | any;
|
|
2605
|
+
readonly Name: string;
|
|
2606
|
+
Select(): any;
|
|
2607
|
+
readonly Border: ChartBorder;
|
|
2608
|
+
Delete(): any;
|
|
2609
|
+
ClearFormats(): any;
|
|
2610
|
+
EndStyle: XlEndStyleCap;
|
|
2611
|
+
readonly Format: ChartFormat;
|
|
2612
|
+
readonly Creator: number;
|
|
2613
|
+
readonly Application: Application;
|
|
2614
|
+
GetProperty(Id: string): any;
|
|
2615
|
+
SetProperty(Id: string, Value: any): void;
|
|
2616
|
+
}
|
|
2617
|
+
interface Floor{
|
|
2618
|
+
readonly Name: string;
|
|
2619
|
+
Select(): any;
|
|
2620
|
+
readonly Parent: object | any;
|
|
2621
|
+
readonly Border: ChartBorder;
|
|
2622
|
+
ClearFormats(): any;
|
|
2623
|
+
readonly Interior: Interior;
|
|
2624
|
+
readonly Fill: ChartFillFormat;
|
|
2625
|
+
PictureType: any;
|
|
2626
|
+
Paste(): void;
|
|
2627
|
+
Thickness: number;
|
|
2628
|
+
readonly Format: ChartFormat;
|
|
2629
|
+
readonly Creator: number;
|
|
2630
|
+
readonly Application: Application;
|
|
2631
|
+
}
|
|
2632
|
+
interface ChartFont{
|
|
2633
|
+
Background: any;
|
|
2634
|
+
Bold: any;
|
|
2635
|
+
Color: any;
|
|
2636
|
+
ColorIndex: any;
|
|
2637
|
+
FontStyle: any;
|
|
2638
|
+
Italic: any;
|
|
2639
|
+
Name: any;
|
|
2640
|
+
OutlineFont: any;
|
|
2641
|
+
Shadow: any;
|
|
2642
|
+
Size: any;
|
|
2643
|
+
Strikethrough: any;
|
|
2644
|
+
Subscript: any;
|
|
2645
|
+
Superscript: any;
|
|
2646
|
+
Underline: any;
|
|
2647
|
+
readonly Creator: number;
|
|
2648
|
+
readonly Parent: object | any;
|
|
2649
|
+
readonly Application: Application;
|
|
2650
|
+
}
|
|
2651
|
+
interface Gridlines{
|
|
2652
|
+
readonly Name: string;
|
|
2653
|
+
Select(): any;
|
|
2654
|
+
readonly Parent: object | any;
|
|
2655
|
+
readonly Border: ChartBorder;
|
|
2656
|
+
Delete(): any;
|
|
2657
|
+
readonly Format: ChartFormat;
|
|
2658
|
+
readonly Creator: number;
|
|
2659
|
+
readonly Application: Application;
|
|
2660
|
+
GetProperty(Id: string): any;
|
|
2661
|
+
SetProperty(Id: string, Value: any): void;
|
|
2662
|
+
}
|
|
2663
|
+
interface HiLoLines{
|
|
2664
|
+
readonly Parent: object | any;
|
|
2665
|
+
readonly Name: string;
|
|
2666
|
+
readonly Border: ChartBorder;
|
|
2667
|
+
readonly Format: ChartFormat;
|
|
2668
|
+
readonly Creator: number;
|
|
2669
|
+
readonly Application: Application;
|
|
2670
|
+
Delete(): any;
|
|
2671
|
+
Select(): any;
|
|
2672
|
+
}
|
|
2673
|
+
interface Interior{
|
|
2674
|
+
Color: any;
|
|
2675
|
+
ColorIndex: any;
|
|
2676
|
+
InvertIfNegative: any;
|
|
2677
|
+
Pattern: any;
|
|
2678
|
+
PatternColor: any;
|
|
2679
|
+
PatternColorIndex: any;
|
|
2680
|
+
readonly Creator: number;
|
|
2681
|
+
readonly Parent: object | any;
|
|
2682
|
+
readonly Application: Application;
|
|
2683
|
+
}
|
|
2684
|
+
interface LeaderLines{
|
|
2685
|
+
Select(): void;
|
|
2686
|
+
readonly Border: ChartBorder;
|
|
2687
|
+
Delete(): void;
|
|
2688
|
+
readonly Format: ChartFormat;
|
|
2689
|
+
readonly Creator: number;
|
|
2690
|
+
readonly Parent: object | any;
|
|
2691
|
+
readonly Application: Application;
|
|
2692
|
+
}
|
|
2693
|
+
interface Legend{
|
|
2694
|
+
readonly Parent: object | any;
|
|
2695
|
+
readonly Name: string;
|
|
2696
|
+
Select(): any;
|
|
2697
|
+
readonly Border: ChartBorder;
|
|
2698
|
+
Delete(): any;
|
|
2699
|
+
readonly Font: ChartFont;
|
|
2700
|
+
LegendEntries(Index?: any): object | any;
|
|
2701
|
+
Position: XlLegendPosition;
|
|
2702
|
+
Shadow: boolean;
|
|
2703
|
+
Clear(): any;
|
|
2704
|
+
Height: number;
|
|
2705
|
+
readonly Interior: Interior;
|
|
2706
|
+
readonly Fill: ChartFillFormat;
|
|
2707
|
+
Left: number;
|
|
2708
|
+
Top: number;
|
|
2709
|
+
Width: number;
|
|
2710
|
+
AutoScaleFont: any;
|
|
2711
|
+
IncludeInLayout: boolean;
|
|
2712
|
+
readonly Format: ChartFormat;
|
|
2713
|
+
readonly Creator: number;
|
|
2714
|
+
readonly Application: Application;
|
|
2715
|
+
GetProperty(Id: string): any;
|
|
2716
|
+
SetProperty(Id: string, Value: any): void;
|
|
2717
|
+
}
|
|
2718
|
+
interface LegendEntries{
|
|
2719
|
+
readonly Parent: object | any;
|
|
2720
|
+
readonly Count: number;
|
|
2721
|
+
Item(Index: any): LegendEntry;
|
|
2722
|
+
readonly Creator: number;
|
|
2723
|
+
readonly Application: Application;
|
|
2724
|
+
}
|
|
2725
|
+
interface LegendEntry{
|
|
2726
|
+
readonly Parent: object | any;
|
|
2727
|
+
Delete(): any;
|
|
2728
|
+
readonly Font: ChartFont;
|
|
2729
|
+
readonly Index: number;
|
|
2730
|
+
readonly LegendKey: LegendKey;
|
|
2731
|
+
Select(): any;
|
|
2732
|
+
AutoScaleFont: any;
|
|
2733
|
+
readonly Left: number;
|
|
2734
|
+
readonly Top: number;
|
|
2735
|
+
readonly Width: number;
|
|
2736
|
+
readonly Height: number;
|
|
2737
|
+
readonly Format: ChartFormat;
|
|
2738
|
+
readonly Creator: number;
|
|
2739
|
+
readonly Application: Application;
|
|
2740
|
+
}
|
|
2741
|
+
interface LegendKey{
|
|
2742
|
+
readonly Parent: object | any;
|
|
2743
|
+
readonly Border: ChartBorder;
|
|
2744
|
+
ClearFormats(): any;
|
|
2745
|
+
Delete(): any;
|
|
2746
|
+
readonly Interior: Interior;
|
|
2747
|
+
readonly Fill: ChartFillFormat;
|
|
2748
|
+
InvertIfNegative: boolean;
|
|
2749
|
+
MarkerBackgroundColor: number;
|
|
2750
|
+
MarkerBackgroundColorIndex: XlColorIndex;
|
|
2751
|
+
MarkerForegroundColor: number;
|
|
2752
|
+
MarkerForegroundColorIndex: XlColorIndex;
|
|
2753
|
+
MarkerSize: number;
|
|
2754
|
+
MarkerStyle: XlMarkerStyle;
|
|
2755
|
+
PictureType: number;
|
|
2756
|
+
Select(): any;
|
|
2757
|
+
Smooth: boolean;
|
|
2758
|
+
readonly Left: number;
|
|
2759
|
+
readonly Top: number;
|
|
2760
|
+
readonly Width: number;
|
|
2761
|
+
readonly Height: number;
|
|
2762
|
+
Shadow: boolean;
|
|
2763
|
+
readonly Format: ChartFormat;
|
|
2764
|
+
readonly Creator: number;
|
|
2765
|
+
PictureUnit2: number;
|
|
2766
|
+
readonly Application: Application;
|
|
2767
|
+
PictureUnit: number;
|
|
2768
|
+
}
|
|
2769
|
+
interface PlotArea{
|
|
2770
|
+
readonly Name: string;
|
|
2771
|
+
Select(): any;
|
|
2772
|
+
readonly Parent: object | any;
|
|
2773
|
+
readonly Border: ChartBorder;
|
|
2774
|
+
ClearFormats(): any;
|
|
2775
|
+
Height: number;
|
|
2776
|
+
readonly Interior: Interior;
|
|
2777
|
+
readonly Fill: ChartFillFormat;
|
|
2778
|
+
Left: number;
|
|
2779
|
+
Top: number;
|
|
2780
|
+
Width: number;
|
|
2781
|
+
InsideLeft: number;
|
|
2782
|
+
InsideTop: number;
|
|
2783
|
+
InsideWidth: number;
|
|
2784
|
+
InsideHeight: number;
|
|
2785
|
+
Position: XlChartElementPosition;
|
|
2786
|
+
readonly Format: ChartFormat;
|
|
2787
|
+
readonly Creator: number;
|
|
2788
|
+
readonly Application: Application;
|
|
2789
|
+
GetProperty(Id: string): any;
|
|
2790
|
+
SetProperty(Id: string, Value: any): void;
|
|
2791
|
+
}
|
|
2792
|
+
interface Point{
|
|
2793
|
+
readonly Parent: object | any;
|
|
2794
|
+
readonly Border: ChartBorder;
|
|
2795
|
+
ClearFormats(): any;
|
|
2796
|
+
Copy(): any;
|
|
2797
|
+
readonly DataLabel: DataLabel;
|
|
2798
|
+
Delete(): any;
|
|
2799
|
+
Explosion: number;
|
|
2800
|
+
HasDataLabel: boolean;
|
|
2801
|
+
readonly Interior: Interior;
|
|
2802
|
+
InvertIfNegative: boolean;
|
|
2803
|
+
MarkerBackgroundColor: number;
|
|
2804
|
+
MarkerBackgroundColorIndex: XlColorIndex;
|
|
2805
|
+
MarkerForegroundColor: number;
|
|
2806
|
+
MarkerForegroundColorIndex: XlColorIndex;
|
|
2807
|
+
MarkerSize: number;
|
|
2808
|
+
MarkerStyle: XlMarkerStyle;
|
|
2809
|
+
Paste(): any;
|
|
2810
|
+
PictureType: XlChartPictureType;
|
|
2811
|
+
Select(): any;
|
|
2812
|
+
ApplyPictToSides: boolean;
|
|
2813
|
+
ApplyPictToFront: boolean;
|
|
2814
|
+
ApplyPictToEnd: boolean;
|
|
2815
|
+
Shadow: boolean;
|
|
2816
|
+
SecondaryPlot: boolean;
|
|
2817
|
+
readonly Fill: ChartFillFormat;
|
|
2818
|
+
Has3DEffect: boolean;
|
|
2819
|
+
readonly Format: ChartFormat;
|
|
2820
|
+
readonly Creator: number;
|
|
2821
|
+
PictureUnit2: number;
|
|
2822
|
+
readonly Application: Application;
|
|
2823
|
+
_ApplyDataLabels(Type?: XlDataLabelsType, LegendKey?: any, AutoText?: any, HasLeaderLines?: any): any;
|
|
2824
|
+
ApplyDataLabels(Type?: XlDataLabelsType, LegendKey?: any, AutoText?: any, HasLeaderLines?: any, ShowSeriesName?: any, ShowCategoryName?: any, ShowValue?: any, ShowPercentage?: any, ShowBubbleSize?: any, Separator?: any): any;
|
|
2825
|
+
PictureUnit: number;
|
|
2826
|
+
readonly Name: string;
|
|
2827
|
+
readonly Height: number;
|
|
2828
|
+
readonly Width: number;
|
|
2829
|
+
readonly Left: number;
|
|
2830
|
+
readonly Top: number;
|
|
2831
|
+
PieSliceLocation(loc: XlPieSliceLocation, Index?: XlPieSliceIndex): number;
|
|
2832
|
+
IsTotal: boolean;
|
|
2833
|
+
GetProperty(Id: string): any;
|
|
2834
|
+
SetProperty(Id: string, Value: any): void;
|
|
2835
|
+
}
|
|
2836
|
+
interface Points{
|
|
2837
|
+
readonly Parent: object | any;
|
|
2838
|
+
readonly Count: number;
|
|
2839
|
+
Item(Index: number): Point;
|
|
2840
|
+
readonly Creator: number;
|
|
2841
|
+
readonly Application: Application;
|
|
2842
|
+
}
|
|
2843
|
+
interface Series{
|
|
2844
|
+
readonly Parent: object | any;
|
|
2845
|
+
AxisGroup: XlAxisGroup;
|
|
2846
|
+
readonly Border: ChartBorder;
|
|
2847
|
+
ClearFormats(): any;
|
|
2848
|
+
Copy(): any;
|
|
2849
|
+
DataLabels(Index?: any): object | any;
|
|
2850
|
+
Delete(): any;
|
|
2851
|
+
ErrorBar(Direction: XlErrorBarDirection, Include: XlErrorBarInclude, Type: XlErrorBarType, Amount?: any, MinusValues?: any): any;
|
|
2852
|
+
readonly ErrorBars: ErrorBars;
|
|
2853
|
+
Explosion: number;
|
|
2854
|
+
Formula: string;
|
|
2855
|
+
FormulaLocal: string;
|
|
2856
|
+
FormulaR1C1: string;
|
|
2857
|
+
FormulaR1C1Local: string;
|
|
2858
|
+
HasDataLabels: boolean;
|
|
2859
|
+
HasErrorBars: boolean;
|
|
2860
|
+
readonly Interior: Interior;
|
|
2861
|
+
readonly Fill: ChartFillFormat;
|
|
2862
|
+
InvertIfNegative: boolean;
|
|
2863
|
+
MarkerBackgroundColor: number;
|
|
2864
|
+
MarkerBackgroundColorIndex: XlColorIndex;
|
|
2865
|
+
MarkerForegroundColor: number;
|
|
2866
|
+
MarkerForegroundColorIndex: XlColorIndex;
|
|
2867
|
+
MarkerSize: number;
|
|
2868
|
+
MarkerStyle: XlMarkerStyle;
|
|
2869
|
+
Name: string;
|
|
2870
|
+
Paste(): any;
|
|
2871
|
+
PictureType: XlChartPictureType;
|
|
2872
|
+
PlotOrder: number;
|
|
2873
|
+
Points(Index?: any): object | any;
|
|
2874
|
+
Select(): any;
|
|
2875
|
+
Smooth: boolean;
|
|
2876
|
+
Trendlines(Index?: any): object | any;
|
|
2877
|
+
Type: number;
|
|
2878
|
+
ChartType: XlChartType;
|
|
2879
|
+
ApplyCustomType(ChartType: XlChartType): void;
|
|
2880
|
+
Values: any;
|
|
2881
|
+
XValues: any;
|
|
2882
|
+
BubbleSizes: any;
|
|
2883
|
+
BarShape: XlBarShape;
|
|
2884
|
+
ApplyPictToSides: boolean;
|
|
2885
|
+
ApplyPictToFront: boolean;
|
|
2886
|
+
ApplyPictToEnd: boolean;
|
|
2887
|
+
Has3DEffect: boolean;
|
|
2888
|
+
Shadow: boolean;
|
|
2889
|
+
HasLeaderLines: boolean;
|
|
2890
|
+
readonly LeaderLines: LeaderLines;
|
|
2891
|
+
readonly Format: ChartFormat;
|
|
2892
|
+
readonly Creator: number;
|
|
2893
|
+
PictureUnit2: number;
|
|
2894
|
+
readonly Application: Application;
|
|
2895
|
+
_ApplyDataLabels(Type?: XlDataLabelsType, LegendKey?: any, AutoText?: any, HasLeaderLines?: any): any;
|
|
2896
|
+
ApplyDataLabels(Type?: XlDataLabelsType, LegendKey?: any, AutoText?: any, HasLeaderLines?: any, ShowSeriesName?: any, ShowCategoryName?: any, ShowValue?: any, ShowPercentage?: any, ShowBubbleSize?: any, Separator?: any): any;
|
|
2897
|
+
PictureUnit: number;
|
|
2898
|
+
readonly PlotColorIndex: number;
|
|
2899
|
+
InvertColor: number;
|
|
2900
|
+
InvertColorIndex: XlColorIndex;
|
|
2901
|
+
IsFiltered: boolean;
|
|
2902
|
+
ParentDataLabelOption: XlParentDataLabelOptions;
|
|
2903
|
+
QuartileCalculationInclusiveMedian: boolean;
|
|
2904
|
+
ValueSortOrder: XlValueSortOrder;
|
|
2905
|
+
GeoProjectionType: XlGeoProjectionType;
|
|
2906
|
+
GeoMappingLevel: XlGeoMappingLevel;
|
|
2907
|
+
RegionLabelOption: XlRegionLabelOptions;
|
|
2908
|
+
SeriesColorGradientStyle: XlSeriesColorGradientStyle;
|
|
2909
|
+
GetProperty(Id: string): any;
|
|
2910
|
+
SetProperty(Id: string, Value: any): void;
|
|
2911
|
+
}
|
|
2912
|
+
interface SeriesCollection{
|
|
2913
|
+
readonly Parent: object | any;
|
|
2914
|
+
readonly Count: number;
|
|
2915
|
+
Extend(Source: any, Rowcol?: any, CategoryLabels?: any): any;
|
|
2916
|
+
Item(Index: any): Series;
|
|
2917
|
+
NewSeries(): Series;
|
|
2918
|
+
readonly Creator: number;
|
|
2919
|
+
readonly Application: Application;
|
|
2920
|
+
Add(Source: any, Rowcol?: XlRowCol, SeriesLabels?: any, CategoryLabels?: any, Replace?: any): Series;
|
|
2921
|
+
}
|
|
2922
|
+
interface SeriesLines{
|
|
2923
|
+
readonly Name: string;
|
|
2924
|
+
Select(): any;
|
|
2925
|
+
readonly Parent: object | any;
|
|
2926
|
+
readonly Border: ChartBorder;
|
|
2927
|
+
Delete(): any;
|
|
2928
|
+
readonly Format: ChartFormat;
|
|
2929
|
+
readonly Creator: number;
|
|
2930
|
+
readonly Application: Application;
|
|
2931
|
+
GetProperty(Id: string): any;
|
|
2932
|
+
SetProperty(Id: string, Value: any): void;
|
|
2933
|
+
}
|
|
2934
|
+
interface TickLabels{
|
|
2935
|
+
readonly Parent: object | any;
|
|
2936
|
+
Delete(): any;
|
|
2937
|
+
readonly Font: ChartFont;
|
|
2938
|
+
readonly Name: string;
|
|
2939
|
+
NumberFormat: string;
|
|
2940
|
+
NumberFormatLinked: boolean;
|
|
2941
|
+
NumberFormatLocal: any;
|
|
2942
|
+
Orientation: XlTickLabelOrientation;
|
|
2943
|
+
Select(): any;
|
|
2944
|
+
AutoScaleFont: any;
|
|
2945
|
+
readonly Depth: number;
|
|
2946
|
+
Offset: number;
|
|
2947
|
+
MultiLevel: boolean;
|
|
2948
|
+
readonly Format: ChartFormat;
|
|
2949
|
+
readonly Creator: number;
|
|
2950
|
+
readonly Application: Application;
|
|
2951
|
+
Alignment: number;
|
|
2952
|
+
ReadingOrder: number;
|
|
2953
|
+
}
|
|
2954
|
+
interface Trendline{
|
|
2955
|
+
readonly Parent: object | any;
|
|
2956
|
+
readonly Border: ChartBorder;
|
|
2957
|
+
ClearFormats(): any;
|
|
2958
|
+
readonly DataLabel: DataLabel;
|
|
2959
|
+
Delete(): any;
|
|
2960
|
+
DisplayEquation: boolean;
|
|
2961
|
+
DisplayRSquared: boolean;
|
|
2962
|
+
readonly Index: number;
|
|
2963
|
+
Intercept: number;
|
|
2964
|
+
InterceptIsAuto: boolean;
|
|
2965
|
+
Name: string;
|
|
2966
|
+
NameIsAuto: boolean;
|
|
2967
|
+
Order: number;
|
|
2968
|
+
Period: number;
|
|
2969
|
+
Select(): any;
|
|
2970
|
+
Type: XlTrendlineType;
|
|
2971
|
+
readonly Format: ChartFormat;
|
|
2972
|
+
readonly Creator: number;
|
|
2973
|
+
Backward2: number;
|
|
2974
|
+
Forward2: number;
|
|
2975
|
+
readonly Application: Application;
|
|
2976
|
+
Backward: number;
|
|
2977
|
+
Forward: number;
|
|
2978
|
+
GetProperty(Id: string): any;
|
|
2979
|
+
SetProperty(Id: string, Value: any): void;
|
|
2980
|
+
}
|
|
2981
|
+
interface Trendlines{
|
|
2982
|
+
readonly Parent: object | any;
|
|
2983
|
+
Add(Type?: XlTrendlineType, Order?: any, Period?: any, Forward?: any, Backward?: any, Intercept?: any, DisplayEquation?: any, DisplayRSquared?: any, Name?: any): Trendline;
|
|
2984
|
+
readonly Count: number;
|
|
2985
|
+
Item(Index?: any): Trendline;
|
|
2986
|
+
readonly Creator: number;
|
|
2987
|
+
readonly Application: Application;
|
|
2988
|
+
}
|
|
2989
|
+
interface UpBars{
|
|
2990
|
+
readonly Name: string;
|
|
2991
|
+
Select(): any;
|
|
2992
|
+
readonly Parent: object | any;
|
|
2993
|
+
readonly Border: ChartBorder;
|
|
2994
|
+
Delete(): any;
|
|
2995
|
+
readonly Interior: Interior;
|
|
2996
|
+
readonly Fill: ChartFillFormat;
|
|
2997
|
+
readonly Format: ChartFormat;
|
|
2998
|
+
readonly Creator: number;
|
|
2999
|
+
readonly Application: Application;
|
|
3000
|
+
GetProperty(Id: string): any;
|
|
3001
|
+
SetProperty(Id: string, Value: any): void;
|
|
3002
|
+
}
|
|
3003
|
+
interface Walls{
|
|
3004
|
+
readonly Name: string;
|
|
3005
|
+
Select(): any;
|
|
3006
|
+
readonly Parent: object | any;
|
|
3007
|
+
readonly Border: ChartBorder;
|
|
3008
|
+
ClearFormats(): any;
|
|
3009
|
+
readonly Interior: Interior;
|
|
3010
|
+
readonly Fill: ChartFillFormat;
|
|
3011
|
+
PictureType: any;
|
|
3012
|
+
Paste(): void;
|
|
3013
|
+
PictureUnit: any;
|
|
3014
|
+
Thickness: number;
|
|
3015
|
+
readonly Format: ChartFormat;
|
|
3016
|
+
readonly Creator: number;
|
|
3017
|
+
readonly Application: Application;
|
|
3018
|
+
}
|
|
3019
|
+
interface MediaFormat{
|
|
3020
|
+
readonly Application: Application;
|
|
3021
|
+
readonly Parent: object | any;
|
|
3022
|
+
Volume: number;
|
|
3023
|
+
Muted: boolean;
|
|
3024
|
+
readonly Length: number;
|
|
3025
|
+
StartPoint: number;
|
|
3026
|
+
EndPoint: number;
|
|
3027
|
+
FadeInDuration: number;
|
|
3028
|
+
FadeOutDuration: number;
|
|
3029
|
+
readonly MediaBookmarks: MediaBookmarks;
|
|
3030
|
+
SetDisplayPicture(Position: number): void;
|
|
3031
|
+
SetDisplayPictureFromFile(FilePath: string): void;
|
|
3032
|
+
Resample(Trim?: boolean, SampleHeight?: number, SampleWidth?: number, VideoFrameRate?: number, AudioSamplingRate?: number, VideoBitRate?: number): void;
|
|
3033
|
+
ResampleFromProfile(profile?: PpResampleMediaProfile): void;
|
|
3034
|
+
readonly ResamplingStatus: PpMediaTaskStatus;
|
|
3035
|
+
readonly IsLinked: boolean;
|
|
3036
|
+
readonly IsEmbedded: boolean;
|
|
3037
|
+
readonly AudioSamplingRate: number;
|
|
3038
|
+
readonly VideoFrameRate: number;
|
|
3039
|
+
readonly SampleHeight: number;
|
|
3040
|
+
readonly SampleWidth: number;
|
|
3041
|
+
readonly VideoCompressionType: string;
|
|
3042
|
+
readonly AudioCompressionType: string;
|
|
3043
|
+
}
|
|
3044
|
+
interface SectionProperties{
|
|
3045
|
+
readonly Application: Application;
|
|
3046
|
+
readonly Parent: object | any;
|
|
3047
|
+
readonly Count: number;
|
|
3048
|
+
Name(sectionIndex: number): string;
|
|
3049
|
+
Rename(sectionIndex: number, sectionName: string): void;
|
|
3050
|
+
SlidesCount(sectionIndex: number): number;
|
|
3051
|
+
FirstSlide(sectionIndex: number): number;
|
|
3052
|
+
AddBeforeSlide(SlideIndex: number, sectionName: string): number;
|
|
3053
|
+
AddSection(sectionIndex: number, sectionName?: any): number;
|
|
3054
|
+
Move(sectionIndex: number, toPos: number): void;
|
|
3055
|
+
Delete(sectionIndex: number, deleteSlides: boolean): void;
|
|
3056
|
+
SectionID(sectionIndex: number): string;
|
|
3057
|
+
}
|
|
3058
|
+
interface Player{
|
|
3059
|
+
readonly Application: Application;
|
|
3060
|
+
readonly Parent: object | any;
|
|
3061
|
+
Play(): void;
|
|
3062
|
+
Pause(): void;
|
|
3063
|
+
Stop(): void;
|
|
3064
|
+
GoToNextBookmark(): void;
|
|
3065
|
+
GoToPreviousBookmark(): void;
|
|
3066
|
+
CurrentPosition: number;
|
|
3067
|
+
readonly State: PpPlayerState;
|
|
3068
|
+
}
|
|
3069
|
+
interface ResampleMediaTask{
|
|
3070
|
+
readonly profile: PpResampleMediaProfile;
|
|
3071
|
+
readonly IsLinked: boolean;
|
|
3072
|
+
readonly IsEmbedded: boolean;
|
|
3073
|
+
readonly AudioSamplingRate: number;
|
|
3074
|
+
readonly VideoFrameRate: number;
|
|
3075
|
+
readonly SampleHeight: number;
|
|
3076
|
+
readonly SampleWidth: number;
|
|
3077
|
+
readonly ContainerType: string;
|
|
3078
|
+
readonly VideoCompressionType: string;
|
|
3079
|
+
readonly AudioCompressionType: string;
|
|
3080
|
+
readonly Shape: Shape;
|
|
3081
|
+
}
|
|
3082
|
+
interface ResampleMediaTasks{
|
|
3083
|
+
Item(Index: number): ResampleMediaTask;
|
|
3084
|
+
Pause(): void;
|
|
3085
|
+
Cancel(): void;
|
|
3086
|
+
Resume(): void;
|
|
3087
|
+
readonly PercentComplete: number;
|
|
3088
|
+
}
|
|
3089
|
+
interface MediaBookmark{
|
|
3090
|
+
readonly Index: number;
|
|
3091
|
+
readonly Name: string;
|
|
3092
|
+
readonly Position: number;
|
|
3093
|
+
Delete(): void;
|
|
3094
|
+
}
|
|
3095
|
+
interface MediaBookmarks{
|
|
3096
|
+
Item(Index: number): MediaBookmark;
|
|
3097
|
+
Add(Position: number, Name: string): MediaBookmark;
|
|
3098
|
+
}
|
|
3099
|
+
interface Coauthoring{
|
|
3100
|
+
readonly Application: Application;
|
|
3101
|
+
readonly Parent: object | any;
|
|
3102
|
+
readonly MergeMode: boolean;
|
|
3103
|
+
FavorServerEditsDuringMerge: boolean;
|
|
3104
|
+
EndReview(): void;
|
|
3105
|
+
readonly PendingUpdates: boolean;
|
|
3106
|
+
readonly CoauthorCount: number;
|
|
3107
|
+
}
|
|
3108
|
+
interface Broadcast{
|
|
3109
|
+
readonly Application: Application;
|
|
3110
|
+
readonly Parent: object | any;
|
|
3111
|
+
Start(serverUrl: string): void;
|
|
3112
|
+
End(): void;
|
|
3113
|
+
readonly AttendeeUrl: string;
|
|
3114
|
+
readonly IsBroadcasting: boolean;
|
|
3115
|
+
Pause(): void;
|
|
3116
|
+
Resume(): void;
|
|
3117
|
+
AddMeetingNotes(notesUrl: string, notesWacUrl: string): void;
|
|
3118
|
+
readonly State: MsoBroadcastState;
|
|
3119
|
+
readonly Capabilities: number;
|
|
3120
|
+
readonly SessionID: string;
|
|
3121
|
+
readonly PresenterServiceUrl: string;
|
|
3122
|
+
}
|
|
3123
|
+
interface ProtectedViewWindows{
|
|
3124
|
+
readonly Application: Application;
|
|
3125
|
+
readonly Parent: object | any;
|
|
3126
|
+
Item(Index: number): ProtectedViewWindow;
|
|
3127
|
+
Open(FileName: string, ReadPassword?: string, OpenAndRepair?: MsoTriState): ProtectedViewWindow;
|
|
3128
|
+
}
|
|
3129
|
+
interface ProtectedViewWindow{
|
|
3130
|
+
readonly Application: Application;
|
|
3131
|
+
readonly Parent: object | any;
|
|
3132
|
+
readonly Presentation: Presentation;
|
|
3133
|
+
readonly Active: MsoTriState;
|
|
3134
|
+
WindowState: PpWindowState;
|
|
3135
|
+
readonly Caption: string;
|
|
3136
|
+
readonly SourcePath: string;
|
|
3137
|
+
readonly SourceName: string;
|
|
3138
|
+
Left: number;
|
|
3139
|
+
Top: number;
|
|
3140
|
+
Width: number;
|
|
3141
|
+
Height: number;
|
|
3142
|
+
Activate(): void;
|
|
3143
|
+
Close(): void;
|
|
3144
|
+
Edit(ModifyPassword?: string): Presentation;
|
|
3145
|
+
}
|
|
3146
|
+
interface FullSeriesCollection{
|
|
3147
|
+
readonly Parent: object | any;
|
|
3148
|
+
readonly Count: number;
|
|
3149
|
+
Item(Index: any): Series;
|
|
3150
|
+
readonly Application: Application;
|
|
3151
|
+
readonly Creator: number;
|
|
3152
|
+
}
|
|
3153
|
+
interface ChartCategory{
|
|
3154
|
+
readonly Parent: object | any;
|
|
3155
|
+
readonly Name: string;
|
|
3156
|
+
IsFiltered: boolean;
|
|
3157
|
+
}
|
|
3158
|
+
interface CategoryCollection{
|
|
3159
|
+
readonly Parent: object | any;
|
|
3160
|
+
readonly Count: number;
|
|
3161
|
+
Item(Index: any): ChartCategory;
|
|
3162
|
+
readonly Application: Application;
|
|
3163
|
+
readonly Creator: number;
|
|
3164
|
+
}
|
|
3165
|
+
interface ThemeVariant{
|
|
3166
|
+
readonly Application: Application;
|
|
3167
|
+
readonly Parent: object | any;
|
|
3168
|
+
readonly Name: string;
|
|
3169
|
+
readonly Width: number;
|
|
3170
|
+
readonly Height: number;
|
|
3171
|
+
readonly Id: string;
|
|
3172
|
+
}
|
|
3173
|
+
interface ThemeVariants{
|
|
3174
|
+
readonly Application: Application;
|
|
3175
|
+
readonly Parent: object | any;
|
|
3176
|
+
Item(Index: number): ThemeVariant;
|
|
3177
|
+
}
|
|
3178
|
+
interface Theme{
|
|
3179
|
+
readonly Application: Application;
|
|
3180
|
+
readonly Parent: object | any;
|
|
3181
|
+
readonly ThemeVariants: ThemeVariants;
|
|
3182
|
+
}
|
|
3183
|
+
interface SlideNavigation{
|
|
3184
|
+
readonly Application: Application;
|
|
3185
|
+
readonly Parent: object | any;
|
|
3186
|
+
Visible: boolean;
|
|
3187
|
+
}
|
|
3188
|
+
interface Guides{
|
|
3189
|
+
readonly Application: Application;
|
|
3190
|
+
readonly Parent: object | any;
|
|
3191
|
+
Item(Index: number): Guide;
|
|
3192
|
+
Add(Orientation: PpGuideOrientation, Position: number): Guide;
|
|
3193
|
+
}
|
|
3194
|
+
interface Guide{
|
|
3195
|
+
readonly Application: Application;
|
|
3196
|
+
readonly Parent: object | any;
|
|
3197
|
+
Delete(): void;
|
|
3198
|
+
readonly Orientation: PpGuideOrientation;
|
|
3199
|
+
Position: number;
|
|
3200
|
+
readonly Color: ColorFormat;
|
|
3201
|
+
}
|
|
3202
|
+
interface Model3DFormat{
|
|
3203
|
+
readonly Application: object | any;
|
|
3204
|
+
readonly Creator: number;
|
|
3205
|
+
readonly Parent: object | any;
|
|
3206
|
+
AutoFit: MsoTriState;
|
|
3207
|
+
RotationX: number;
|
|
3208
|
+
RotationY: number;
|
|
3209
|
+
RotationZ: number;
|
|
3210
|
+
FieldOfView: number;
|
|
3211
|
+
CameraPositionX: number;
|
|
3212
|
+
CameraPositionY: number;
|
|
3213
|
+
CameraPositionZ: number;
|
|
3214
|
+
LookAtPointX: number;
|
|
3215
|
+
LookAtPointY: number;
|
|
3216
|
+
LookAtPointZ: number;
|
|
3217
|
+
ResetModel(ResetSize?: boolean): void;
|
|
3218
|
+
IncrementRotationX(Increment: number): void;
|
|
3219
|
+
IncrementRotationY(Increment: number): void;
|
|
3220
|
+
IncrementRotationZ(Increment: number): void;
|
|
3221
|
+
}
|
|
3222
|
+
|
|
3223
|
+
|
|
3224
|
+
declare const Application: Application;
|