-
Notifications
You must be signed in to change notification settings - Fork 66
/
word.custompropertycollection.yml
319 lines (287 loc) · 12.6 KB
/
word.custompropertycollection.yml
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
### YamlMime:TSType
name: Word.CustomPropertyCollection
uid: 'word!Word.CustomPropertyCollection:class'
package: word!
fullName: Word.CustomPropertyCollection
summary: 'Contains the collection of [Word.CustomProperty](xref:word!Word.CustomProperty:class) objects.'
remarks: >-
\[ [API set: WordApi 1.3](/javascript/api/requirement-sets/word/word-api-requirement-sets) \]
#### Examples
```TypeScript
// Link to full sample:
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/30-properties/read-write-custom-document-properties.yaml
await Word.run(async (context) => {
const properties: Word.CustomPropertyCollection = context.document.properties.customProperties;
properties.load("key,type,value");
await context.sync();
for (let i = 0; i < properties.items.length; i++)
console.log("Property Name:" + properties.items[i].key + "; Type=" + properties.items[i].type + "; Property Value=" + properties.items[i].value);
});
```
isPreview: false
isDeprecated: false
type: class
properties:
- name: context
uid: 'word!Word.CustomPropertyCollection#context:member'
package: word!
fullName: context
summary: >-
The request context associated with the object. This connects the add-in's process to the Office host
application's process.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: 'context: RequestContext;'
return:
type: '<xref uid="word!Word.RequestContext:class" />'
- name: items
uid: 'word!Word.CustomPropertyCollection#items:member'
package: word!
fullName: items
summary: Gets the loaded child items in this collection.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: 'readonly items: Word.CustomProperty[];'
return:
type: '<xref uid="word!Word.CustomProperty:class" />[]'
description: >-
#### Examples
```TypeScript
// Link to full sample:
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/30-properties/read-write-custom-document-properties.yaml
await Word.run(async (context) => {
const properties: Word.CustomPropertyCollection = context.document.properties.customProperties;
properties.load("key,type,value");
await context.sync();
for (let i = 0; i < properties.items.length; i++)
console.log("Property Name:" + properties.items[i].key + "; Type=" + properties.items[i].type + "; Property Value=" + properties.items[i].value);
});
```
methods:
- name: 'add(key, value)'
uid: 'word!Word.CustomPropertyCollection#add:member(1)'
package: word!
fullName: 'add(key, value)'
summary: Creates a new or sets an existing custom property.
remarks: >-
\[ [API set: WordApi 1.3](/javascript/api/requirement-sets/word/word-api-requirement-sets) \]
#### Examples
```TypeScript
// Link to full sample:
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/30-properties/read-write-custom-document-properties.yaml
await Word.run(async (context) => {
context.document.properties.customProperties.add("Numeric Property", 1234);
await context.sync();
console.log("Property added");
});
...
await Word.run(async (context) => {
context.document.properties.customProperties.add("String Property", "Hello World!");
await context.sync();
console.log("Property added");
});
```
isPreview: false
isDeprecated: false
syntax:
content: 'add(key: string, value: any): Word.CustomProperty;'
parameters:
- id: key
description: 'Required. The custom property''s key, which is case-insensitive.'
type: string
- id: value
description: Required. The custom property's value.
type: any
return:
type: '<xref uid="word!Word.CustomProperty:class" />'
description: ''
- name: deleteAll()
uid: 'word!Word.CustomPropertyCollection#deleteAll:member(1)'
package: word!
fullName: deleteAll()
summary: Deletes all custom properties in this collection.
remarks: '\[ [API set: WordApi 1.3](/javascript/api/requirement-sets/word/word-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'deleteAll(): void;'
return:
type: void
description: ''
- name: getCount()
uid: 'word!Word.CustomPropertyCollection#getCount:member(1)'
package: word!
fullName: getCount()
summary: Gets the count of custom properties.
remarks: '\[ [API set: WordApi 1.3](/javascript/api/requirement-sets/word/word-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'getCount(): OfficeExtension.ClientResult<number>;'
return:
type: '<xref uid="office!OfficeExtension.ClientResult:class" /><number>'
description: ''
- name: getItem(key)
uid: 'word!Word.CustomPropertyCollection#getItem:member(1)'
package: word!
fullName: getItem(key)
summary: >-
Gets a custom property object by its key, which is case-insensitive. Throws an `ItemNotFound` error if the custom
property doesn't exist.
remarks: '\[ [API set: WordApi 1.3](/javascript/api/requirement-sets/word/word-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'getItem(key: string): Word.CustomProperty;'
parameters:
- id: key
description: The key that identifies the custom property object.
type: string
return:
type: '<xref uid="word!Word.CustomProperty:class" />'
description: ''
- name: getItemOrNullObject(key)
uid: 'word!Word.CustomPropertyCollection#getItemOrNullObject:member(1)'
package: word!
fullName: getItemOrNullObject(key)
summary: >-
Gets a custom property object by its key, which is case-insensitive. If the custom property doesn't exist, then
this method will return an object with its `isNullObject` property set to `true`<!-- -->. For further information,
see [*OrNullObject methods and
properties](https://learn.microsoft.com/office/dev/add-ins/develop/application-specific-api-model#ornullobject-methods-and-properties)<!--
-->.
remarks: '\[ [API set: WordApi 1.3](/javascript/api/requirement-sets/word/word-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'getItemOrNullObject(key: string): Word.CustomProperty;'
parameters:
- id: key
description: Required. The key that identifies the custom property object.
type: string
return:
type: '<xref uid="word!Word.CustomProperty:class" />'
description: ''
- name: load(options)
uid: 'word!Word.CustomPropertyCollection#load:member(1)'
package: word!
fullName: load(options)
summary: >-
Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading
the properties.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
load(options?: Word.Interfaces.CustomPropertyCollectionLoadOptions & Word.Interfaces.CollectionLoadOptions):
Word.CustomPropertyCollection;
parameters:
- id: options
description: Provides options for which properties of the object to load.
type: >-
<xref uid="word!Word.Interfaces.CustomPropertyCollectionLoadOptions:interface" /> & <xref
uid="word!Word.Interfaces.CollectionLoadOptions:interface" />
return:
type: '<xref uid="word!Word.CustomPropertyCollection:class" />'
description: ''
- name: load(propertyNames)
uid: 'word!Word.CustomPropertyCollection#load:member(2)'
package: word!
fullName: load(propertyNames)
summary: >-
Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading
the properties.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: 'load(propertyNames?: string | string[]): Word.CustomPropertyCollection;'
parameters:
- id: propertyNames
description: A comma-delimited string or an array of strings that specify the properties to load.
type: 'string | string[]'
return:
type: '<xref uid="word!Word.CustomPropertyCollection:class" />'
description: ''
- name: load(propertyNamesAndPaths)
uid: 'word!Word.CustomPropertyCollection#load:member(3)'
package: word!
fullName: load(propertyNamesAndPaths)
summary: >-
Queues up a command to load the specified properties of the object. You must call `context.sync()` before reading
the properties.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: 'load(propertyNamesAndPaths?: OfficeExtension.LoadOption): Word.CustomPropertyCollection;'
parameters:
- id: propertyNamesAndPaths
description: >-
`propertyNamesAndPaths.select` is a comma-delimited string that specifies the properties to load, and
`propertyNamesAndPaths.expand` is a comma-delimited string that specifies the navigation properties to load.
type: '<xref uid="office!OfficeExtension.LoadOption:interface" />'
return:
type: '<xref uid="word!Word.CustomPropertyCollection:class" />'
description: ''
- name: toJSON()
uid: 'word!Word.CustomPropertyCollection#toJSON:member(1)'
package: word!
fullName: toJSON()
summary: >-
Overrides the JavaScript `toJSON()` method in order to provide more useful output when an API object is passed to
`JSON.stringify()`<!-- -->. (`JSON.stringify`<!-- -->, in turn, calls the `toJSON` method of the object that's
passed to it.) Whereas the original `Word.CustomPropertyCollection` object is an API object, the `toJSON` method
returns a plain JavaScript object (typed as `Word.Interfaces.CustomPropertyCollectionData`<!-- -->) that contains
an "items" array with shallow copies of any loaded properties from the collection's items.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: 'toJSON(): Word.Interfaces.CustomPropertyCollectionData;'
return:
type: '<xref uid="word!Word.Interfaces.CustomPropertyCollectionData:interface" />'
description: ''
- name: track()
uid: 'word!Word.CustomPropertyCollection#track:member(1)'
package: word!
fullName: track()
summary: >-
Track the object for automatic adjustment based on surrounding changes in the document. This call is a shorthand
for
[context.trackedObjects.add(thisObject)](https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member)<!--
-->. If you're using this object across `.sync` calls and outside the sequential execution of a ".run" batch, and
get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you need to add the
object to the tracked object collection when the object was first created. If this object is part of a collection,
you should also track the parent collection.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: 'track(): Word.CustomPropertyCollection;'
return:
type: '<xref uid="word!Word.CustomPropertyCollection:class" />'
description: ''
- name: untrack()
uid: 'word!Word.CustomPropertyCollection#untrack:member(1)'
package: word!
fullName: untrack()
summary: >-
Release the memory associated with this object, if it has previously been tracked. This call is shorthand for
[context.trackedObjects.remove(thisObject)](https://learn.microsoft.com/javascript/api/office/officeextension.clientrequestcontext#office-officeextension-clientrequestcontext-trackedobjects-member)<!--
-->. Having many tracked objects slows down the host application, so please remember to free any objects you add,
once you're done using them. You'll need to call `context.sync()` before the memory release takes effect.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: 'untrack(): Word.CustomPropertyCollection;'
return:
type: '<xref uid="word!Word.CustomPropertyCollection:class" />'
description: ''
extends: '<xref uid="office!OfficeExtension.ClientObject:class" />'