-
Notifications
You must be signed in to change notification settings - Fork 66
/
excel.slicercollection.yml
267 lines (251 loc) · 10.8 KB
/
excel.slicercollection.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
### YamlMime:TSType
name: Excel.SlicerCollection
uid: 'excel!Excel.SlicerCollection:class'
package: excel!
fullName: Excel.SlicerCollection
summary: Represents a collection of all the slicer objects in the workbook or a worksheet.
remarks: '\[ [API set: ExcelApi 1.10](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
type: class
properties:
- name: context
uid: 'excel!Excel.SlicerCollection#context:member'
package: excel!
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="excel!Excel.RequestContext:class" />'
- name: items
uid: 'excel!Excel.SlicerCollection#items:member'
package: excel!
fullName: items
summary: Gets the loaded child items in this collection.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: 'readonly items: Excel.Slicer[];'
return:
type: '<xref uid="excel!Excel.Slicer:class" />[]'
methods:
- name: 'add(slicerSource, sourceField, slicerDestination)'
uid: 'excel!Excel.SlicerCollection#add:member(1)'
package: excel!
fullName: 'add(slicerSource, sourceField, slicerDestination)'
summary: Adds a new slicer to the workbook.
remarks: >-
\[ [API set: ExcelApi 1.10](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]
#### Examples
```TypeScript
// Link to full sample:
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/excel/38-pivottable/pivottable-slicer.yaml
await Excel.run(async (context) => {
const sheet = context.workbook.worksheets.getItem("Pivot");
const slicer = sheet.slicers.add(
"Farm Sales", /* The slicer data source. For PivotTables, this can be the PivotTable object reference or name. */
"Type" /* The field in the data source to filter by. For PivotTables, this can be a PivotField object reference or ID. */
);
slicer.name = "Fruit Slicer";
await context.sync();
});
```
isPreview: false
isDeprecated: false
syntax:
content: >-
add(slicerSource: string | PivotTable | Table, sourceField: string | PivotField | number | TableColumn,
slicerDestination?: string | Worksheet): Excel.Slicer;
parameters:
- id: slicerSource
description: >-
The data source that the new slicer will be based on. It can be a `PivotTable` object, a `Table` object, or
a string. When a PivotTable object is passed, the data source is the source of the `PivotTable` object. When
a `Table` object is passed, the data source is the `Table` object. When a string is passed, it is
interpreted as the name or ID of a PivotTable or table.
type: 'string | <xref uid="excel!Excel.PivotTable:class" /> | <xref uid="excel!Excel.Table:class" />'
- id: sourceField
description: >-
The field in the data source to filter by. It can be a `PivotField` object, a `TableColumn` object, the ID
of a `PivotField` or the name or ID of a `TableColumn`<!-- -->.
type: 'string | <xref uid="excel!Excel.PivotField:class" /> | number | <xref uid="excel!Excel.TableColumn:class" />'
- id: slicerDestination
description: >-
Optional. The worksheet in which the new slicer will be created. It can be a `Worksheet` object or the name
or ID of a worksheet. This parameter can be omitted if the slicer collection is retrieved from a worksheet.
type: 'string | <xref uid="excel!Excel.Worksheet:class" />'
return:
type: '<xref uid="excel!Excel.Slicer:class" />'
description: The new slicer.
- name: getCount()
uid: 'excel!Excel.SlicerCollection#getCount:member(1)'
package: excel!
fullName: getCount()
summary: Returns the number of slicers in the collection.
remarks: '\[ [API set: ExcelApi 1.10](/javascript/api/requirement-sets/excel/excel-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: 'excel!Excel.SlicerCollection#getItem:member(1)'
package: excel!
fullName: getItem(key)
summary: Gets a slicer object using its name or ID.
remarks: >-
\[ [API set: ExcelApi 1.10](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]
#### Examples
```TypeScript
// Link to full sample:
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/excel/38-pivottable/pivottable-slicer.yaml
await Excel.run(async (context) => {
const slicer = context.workbook.slicers.getItem("Fruit Slicer");
slicer.caption = "Fruit Types";
slicer.left = 395;
slicer.top = 15;
slicer.height = 135;
slicer.width = 150;
await context.sync();
});
```
isPreview: false
isDeprecated: false
syntax:
content: 'getItem(key: string): Excel.Slicer;'
parameters:
- id: key
description: The name or ID of the slicer.
type: string
return:
type: '<xref uid="excel!Excel.Slicer:class" />'
description: ''
- name: getItemAt(index)
uid: 'excel!Excel.SlicerCollection#getItemAt:member(1)'
package: excel!
fullName: getItemAt(index)
summary: Gets a slicer based on its position in the collection.
remarks: '\[ [API set: ExcelApi 1.10](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'getItemAt(index: number): Excel.Slicer;'
parameters:
- id: index
description: Index value of the object to be retrieved. Zero-indexed.
type: number
return:
type: '<xref uid="excel!Excel.Slicer:class" />'
description: ''
- name: getItemOrNullObject(key)
uid: 'excel!Excel.SlicerCollection#getItemOrNullObject:member(1)'
package: excel!
fullName: getItemOrNullObject(key)
summary: >-
Gets a slicer using its name or ID. If the slicer doesn't exist, then this method returns 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: ExcelApi 1.10](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'getItemOrNullObject(key: string): Excel.Slicer;'
parameters:
- id: key
description: Name or ID of the slicer to be retrieved.
type: string
return:
type: '<xref uid="excel!Excel.Slicer:class" />'
description: ''
- name: load(options)
uid: 'excel!Excel.SlicerCollection#load:member(1)'
package: excel!
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?: Excel.Interfaces.SlicerCollectionLoadOptions & Excel.Interfaces.CollectionLoadOptions):
Excel.SlicerCollection;
parameters:
- id: options
description: Provides options for which properties of the object to load.
type: >-
<xref uid="excel!Excel.Interfaces.SlicerCollectionLoadOptions:interface" /> & <xref
uid="excel!Excel.Interfaces.CollectionLoadOptions:interface" />
return:
type: '<xref uid="excel!Excel.SlicerCollection:class" />'
description: ''
- name: load(propertyNames)
uid: 'excel!Excel.SlicerCollection#load:member(2)'
package: excel!
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[]): Excel.SlicerCollection;'
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="excel!Excel.SlicerCollection:class" />'
description: ''
- name: load(propertyNamesAndPaths)
uid: 'excel!Excel.SlicerCollection#load:member(3)'
package: excel!
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): Excel.SlicerCollection;'
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="excel!Excel.SlicerCollection:class" />'
description: ''
- name: toJSON()
uid: 'excel!Excel.SlicerCollection#toJSON:member(1)'
package: excel!
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 is
passed to it.) Whereas the original `Excel.SlicerCollection` object is an API object, the `toJSON` method returns
a plain JavaScript object (typed as `Excel.Interfaces.SlicerCollectionData`<!-- -->) 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(): Excel.Interfaces.SlicerCollectionData;'
return:
type: '<xref uid="excel!Excel.Interfaces.SlicerCollectionData:interface" />'
description: ''
extends: '<xref uid="office!OfficeExtension.ClientObject:class" />'