-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathword.yaml
584 lines (584 loc) · 23.3 KB
/
word.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
- id: word-basics-basic-api-call
name: Basic API call (TypeScript)
fileName: basic-api-call.yaml
description: Performs a basic Word API call using TypeScript.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/01-basics/basic-api-call.yaml
group: Basics
api_set:
WordApi: '1.1'
- id: word-basics-api-call-es5
name: Basic API call (JavaScript)
fileName: basic-api-call-es5.yaml
description: Performs a basic Word API call using plain JavaScript & Promises.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/01-basics/basic-api-call-es5.yaml
group: Basics
api_set:
WordApi: '1.1'
- id: word-basics-basic-common-api-call
name: Basic API call (Office 2013)
fileName: basic-common-api-call.yaml
description: >-
Performs a basic Word API call using JavaScript with the "common API" syntax
(compatible with Office 2013).
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/01-basics/basic-common-api-call.yaml
group: Basics
api_set:
Selection: 1.1
- id: word-content-controls-insert-and-change-content-controls
name: Content control basics
fileName: insert-and-change-content-controls.yaml
description: 'Inserts, updates, and retrieves content controls.'
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/10-content-controls/insert-and-change-content-controls.yaml
group: Content Controls
api_set:
WordApi: '1.1'
- id: word-content-controls-content-control-onadded-event
name: On adding content controls
fileName: content-control-onadded-event.yaml
description: >-
Registers, triggers, and deregisters onAdded event that tracks the addition
of content controls.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/10-content-controls/content-control-onadded-event.yaml
group: Content Controls
api_set:
WordApi: '1.5'
- id: word-content-controls-content-control-onentered-event
name: On entering content controls
fileName: content-control-onentered-event.yaml
description: >-
Registers, triggers, and deregisters onEntered event that tracks when the
cursor is placed within content controls.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/10-content-controls/content-control-onentered-event.yaml
group: Content Controls
api_set:
WordApi: '1.5'
- id: word-content-controls-content-control-onselectionchanged-event
name: On changing selection in content controls
fileName: content-control-onselectionchanged-event.yaml
description: >-
Registers, triggers, and deregisters onSelectionChanged event that tracks
when selections are changed in content controls.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/10-content-controls/content-control-onselectionchanged-event.yaml
group: Content Controls
api_set:
WordApi: '1.5'
- id: word-content-controls-content-control-ondatachanged-event
name: On changing data in content controls
fileName: content-control-ondatachanged-event.yaml
description: >-
Registers, triggers, and deregisters onDataChanged event that tracks when
data is changed in content controls.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/10-content-controls/content-control-ondatachanged-event.yaml
group: Content Controls
api_set:
WordApi: '1.5'
- id: word-content-controls-content-control-onexited-event
name: On exiting content controls
fileName: content-control-onexited-event.yaml
description: >-
Registers, triggers, and deregisters onExited event that tracks when the
cursor is removed from within content controls.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/10-content-controls/content-control-onexited-event.yaml
group: Content Controls
api_set:
WordApi: '1.5'
- id: word-content-controls-content-control-ondeleted-event
name: On deleting content controls
fileName: content-control-ondeleted-event.yaml
description: >-
Registers, triggers, and deregisters onDeleted event that tracks the removal
of content controls.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/10-content-controls/content-control-ondeleted-event.yaml
group: Content Controls
api_set:
WordApi: '1.5'
- id: word-content-controls-insert-and-change-checkbox-content-control
name: Manage checkbox content controls
fileName: insert-and-change-checkbox-content-control.yaml
description: 'Inserts, updates, retrieves, and deletes checkbox content controls.'
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/10-content-controls/insert-and-change-checkbox-content-control.yaml
group: Content Controls
api_set:
WordApi: '1.7'
- id: word-content-controls-insert-and-change-combo-box-content-control
name: Manage combo box content controls
fileName: insert-and-change-combo-box-content-control.yaml
description: 'Inserts, updates, and deletes combo box content controls.'
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/10-content-controls/insert-and-change-combo-box-content-control.yaml
group: Content Controls
api_set:
WordApi: '1.9'
- id: word-content-controls-insert-and-change-dropdown-list-content-control
name: Manage dropdown list content controls
fileName: insert-and-change-dropdown-list-content-control.yaml
description: 'Inserts, updates, and deletes dropdown list content controls.'
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/10-content-controls/insert-and-change-dropdown-list-content-control.yaml
group: Content Controls
api_set:
WordApi: '1.9'
- id: word-content-controls-get-change-tracking-states
name: Get change tracking states of content controls
fileName: get-change-tracking-states.yaml
description: Gets change tracking states of content controls.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/10-content-controls/get-change-tracking-states.yaml
group: Content Controls
api_set:
WordApi: '1.5'
- id: word-images-insert-and-get-pictures
name: Use inline pictures
fileName: insert-and-get-pictures.yaml
description: Inserts and gets inline pictures.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/15-images/insert-and-get-pictures.yaml
group: Images
api_set:
WordApiDesktop: '1.1'
- id: word-lists-insert-list
name: Create a list
fileName: insert-list.yaml
description: Inserts a new list into the document.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/20-lists/insert-list.yaml
group: Lists
api_set:
WordApi: '1.3'
- id: word-lists-manage-styles
name: Get list styles
fileName: manage-list-styles.yaml
description: This sample shows how to get the list styles in the current document.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/20-lists/manage-list-styles.yaml
group: Lists
api_set:
WordApiDesktop: '1.1'
- id: word-lists-organize-list
name: Organize a list
fileName: organize-list.yaml
description: Shows how to create and organize a list.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/20-lists/organize-list.yaml
group: Lists
api_set:
WordApi: '1.3'
- id: word-paragraph-get-paragraph-on-insertion-point
name: Get paragraph from insertion point
fileName: get-paragraph-on-insertion-point.yaml
description: Gets the full paragraph containing the insertion point.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/25-paragraph/get-paragraph-on-insertion-point.yaml
group: Paragraph
api_set:
WordApi: '1.1'
- id: word-paragraph-insert-line-and-page-breaks
name: Insert breaks
fileName: insert-line-and-page-breaks.yaml
description: Inserts page and line breaks in a document.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/25-paragraph/insert-line-and-page-breaks.yaml
group: Paragraph
api_set:
WordApi: '1.2'
- id: word-paragraph-insert-in-different-locations
name: Insert content at different locations
fileName: insert-in-different-locations.yaml
description: Inserts content at different document locations.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/25-paragraph/insert-in-different-locations.yaml
group: Paragraph
api_set:
WordApi: '1.2'
- id: word-paragraph-insert-formatted-text
name: Insert formatted text
fileName: insert-formatted-text.yaml
description: Formats text with pre-built and custom styles.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/25-paragraph/insert-formatted-text.yaml
group: Paragraph
api_set:
WordApi: '1.1'
- id: word-paragraph-insert-header-and-footer
name: Insert headers and footers
fileName: insert-header-and-footer.yaml
description: Inserts headers and footers in the document.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/25-paragraph/insert-header-and-footer.yaml
group: Paragraph
api_set:
WordApi: '1.1'
- id: word-paragraph-paragraph-properties
name: Paragraph properties
fileName: paragraph-properties.yaml
description: 'Sets indentation, space between paragraphs, and other paragraph properties.'
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/25-paragraph/paragraph-properties.yaml
group: Paragraph
api_set:
WordApi: '1.1'
- id: word-paragraph-search
name: Search
fileName: search.yaml
description: Shows basic and advanced search capabilities.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/25-paragraph/search.yaml
group: Paragraph
api_set:
WordApi: '1.1'
- id: word-paragraph-get-word-count
name: Get word count
fileName: get-word-count.yaml
description: Counts how many times a word or term appears in the document.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/25-paragraph/get-word-count.yaml
group: Paragraph
api_set:
WordApi: '1.1'
- id: word-paragraph-get-text
name: Get text
fileName: get-text.yaml
description: >-
Shows how to get paragraph text, including hidden text and text marked for
deletion.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/25-paragraph/get-text.yaml
group: Paragraph
api_set:
WordApi: '1.7'
- id: word-paragraph-onadded-event
name: On adding paragraphs
fileName: onadded-event.yaml
description: >-
Registers, triggers, and deregisters the onParagraphAdded event that tracks
the addition of paragraphs.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/25-paragraph/onadded-event.yaml
group: Paragraph
api_set:
WordApi: '1.6'
- id: word-paragraph-onchanged-event
name: On changing content in paragraphs
fileName: onchanged-event.yaml
description: >-
Registers, triggers, and deregisters the onParagraphChanged event that
tracks when content is changed in paragraphs.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/25-paragraph/onchanged-event.yaml
group: Paragraph
api_set:
WordApi: '1.6'
- id: word-paragraph-ondeleted-event
name: On deleting paragraphs
fileName: ondeleted-event.yaml
description: >-
Registers, triggers, and deregisters the onParagraphDeleted event that
tracks the removal of paragraphs.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/25-paragraph/ondeleted-event.yaml
group: Paragraph
api_set:
WordApi: '1.6'
- id: word-properties-get-built-in-properties
name: Built-in document properties
fileName: get-built-in-properties.yaml
description: Gets built-in document properties.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/30-properties/get-built-in-properties.yaml
group: Properties
api_set:
WordApi: '1.1'
- id: word-properties-read-write-custom-document-properties
name: Custom document properties
fileName: read-write-custom-document-properties.yaml
description: Adds and reads custom document properties of different types.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/30-properties/read-write-custom-document-properties.yaml
group: Properties
api_set:
WordApi: '1.3'
- id: word-ranges-scroll-to-range
name: Scroll to a range
fileName: scroll-to-range.yaml
description: Scrolls to a range with and without selection.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/35-ranges/scroll-to-range.yaml
group: Ranges
api_set:
WordApi: '1.2'
- id: word-ranges-split-words-of-first-paragraph
name: Split a paragraph into ranges
fileName: split-words-of-first-paragraph.yaml
description: >-
Splits a paragraph into word ranges and then traverses all the ranges to
format each word, producing a "karaoke" effect.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/35-ranges/split-words-of-first-paragraph.yaml
group: Ranges
api_set:
WordApi: '1.3'
- id: word-ranges-compare-location
name: Compare range locations
fileName: compare-location.yaml
description: This sample shows how to compare the locations of two ranges.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/35-ranges/compare-location.yaml
group: Ranges
api_set:
WordApi: '1.3'
- id: word-tables-table-cell-access
name: Create and access a table
fileName: table-cell-access.yaml
description: Creates a table and accesses a specific cell.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/40-tables/table-cell-access.yaml
group: Tables
api_set:
WordApi: '1.3'
- id: word-tables-manage-formatting
name: Table formatting
fileName: manage-formatting.yaml
description: >-
Gets the formatting details of a table, a table row, and a table cell,
including borders, alignment, and cell padding.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/40-tables/manage-formatting.yaml
group: Tables
api_set:
WordApi: '1.3'
- id: word-tables-manage-custom-style
name: Manage custom table style
fileName: manage-custom-style.yaml
description: >-
Shows how to manage primarily margins and alignments of a custom table style
in the current document.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/40-tables/manage-custom-style.yaml
group: Tables
api_set:
WordApiDesktop: '1.1'
- id: word-document-manage-body
name: Manage body
fileName: manage-body.yaml
description: Shows how to manage the document body.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/manage-body.yaml
group: Document
api_set:
WordApi: '1.2'
- id: word-document-insert-section-breaks
name: Add a section
fileName: insert-section-breaks.yaml
description: Shows how to insert section breaks in the document.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/insert-section-breaks.yaml
group: Document
api_set:
WordApi: '1.1'
- id: word-document-insert-external-document
name: Insert an external document
fileName: insert-external-document.yaml
description: >-
Inserts the content (with or without settings) of an external document into
the current document. Settings include formatting, change-tracking mode,
custom properties, and XML parts.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/insert-external-document.yaml
group: Document
api_set:
WordApi: '1.7'
- id: word-document-manage-change-tracking
name: Track changes
fileName: manage-change-tracking.yaml
description: >-
This sample shows how to get and set the change tracking mode and get the
before and after of reviewed text.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/manage-change-tracking.yaml
group: Document
api_set:
WordApi: '1.4'
- id: word-document-manage-tracked-changes
name: Manage tracked changes
fileName: manage-tracked-changes.yaml
description: >-
This samples shows how to manage tracked changes, including accepting and
rejecting changes.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/manage-tracked-changes.yaml
group: Document
api_set:
WordApi: '1.6'
- id: word-document-manage-comments
name: Manage comments
fileName: manage-comments.yaml
description: >-
This sample shows how to perform basic comments operations, including
insert, reply, get, edit, resolve, and delete.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/manage-comments.yaml
group: Document
api_set:
WordApi: '1.4'
- id: word-document-manage-footnotes
name: Manage footnotes
fileName: manage-footnotes.yaml
description: >-
This sample shows how to perform basic footnote operations, including
insert, get, and delete.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/manage-footnotes.yaml
group: Document
api_set:
WordApi: '1.5'
- id: word-document-manage-fields
name: Manage fields
fileName: manage-fields.yaml
description: >-
This sample shows how to perform basic operations on fields, including
insert, get, and delete.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/manage-fields.yaml
group: Document
api_set:
WordApi: '1.5'
- id: word-document-manage-settings
name: Manage settings
fileName: manage-settings.yaml
description: >-
This sample shows how to add, edit, get, and delete custom settings on a
document.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/manage-settings.yaml
group: Document
api_set:
WordApi: '1.4'
- id: word-document-manage-custom-xml-part-ns
name: Manage a CustomXmlPart with the namespace
fileName: manage-custom-xml-part-ns.yaml
description: >-
This sample shows how to add, query, replace, edit, and delete a custom XML
part in a document.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/manage-custom-xml-part-ns.yaml
group: Document
api_set:
WordApi: '1.4'
- id: word-document-manage-custom-xml-part
name: Manage a CustomXmlPart without the namespace
fileName: manage-custom-xml-part.yaml
description: >-
This sample shows how to add, query, edit, and delete a custom XML part in a
document.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/manage-custom-xml-part.yaml
group: Document
api_set:
WordApi: '1.4'
- id: word-document-manage-styles
name: Manage styles
fileName: manage-styles.yaml
description: >-
This sample shows how to perform operations on the styles in the current
document and how to add and delete custom styles.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/manage-styles.yaml
group: Document
api_set:
WordApiDesktop: '1.1'
- id: word-document-get-external-styles
name: Get styles from external document
fileName: get-external-styles.yaml
description: This sample shows how to get styles from an external document.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/get-external-styles.yaml
group: Document
api_set:
WordApi: '1.5'
- id: word-document-save-close
name: Manage document save and close
fileName: save-close.yaml
description: Shows how to manage saving and closing document.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/save-close.yaml
group: Document
api_set:
WordApi: '1.5'
- id: word-document-manage-annotations
name: Manage annotations
fileName: manage-annotations.yaml
description: >-
Shows how to leverage the Writing Assistance API to manage annotations and
use annotation events.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/manage-annotations.yaml
group: Document
api_set:
WordApi: '1.8'
- id: word-document-compare-documents
name: Compare documents
fileName: compare-documents.yaml
description: Compares two documents (the current one and a specified external one).
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/compare-documents.yaml
group: Document
api_set:
WordApiDesktop: '1.1'
- id: word-scenarios-doc-assembly
name: Document assembly
fileName: doc-assembly.yaml
description: Composes different parts of a Word document.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/90-scenarios/doc-assembly.yaml
group: Scenarios
api_set:
WordApi: '1.1'
- id: word-scenarios-multiple-property-set
name: Set multiple properties at once
fileName: multiple-property-set.yaml
description: Sets multiple properties at once with the API object set() method.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/90-scenarios/multiple-property-set.yaml
group: Scenarios
api_set:
WordApi: '1.3'
- id: word-scenarios-correlated-objects-pattern
name: Correlated objects pattern
fileName: correlated-objects-pattern.yaml
description: Shows the performance benefits of avoiding `context.sync` calls in a loop.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/90-scenarios/correlated-objects-pattern.yaml
group: Scenarios
api_set:
WordApi: '1.4'
- id: word-insert-and-change-content-controls
name: Content control basics
fileName: insert-and-change-content-controls.yaml
description: 'Inserts, updates, and retrieves content controls.'
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/99-preview-apis/insert-and-change-content-controls.yaml
group: Preview APIs
api_set:
WordApi: '1.9'
- id: word-manage-comments
name: Manage comments
fileName: manage-comments.yaml
description: >-
This sample shows how to perform operations on comments (including insert,
reply, get, edit, resolve, and delete) and use comment events.
rawUrl: >-
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/99-preview-apis/manage-comments.yaml
group: Preview APIs
api_set:
WordApi: '1.9'