-
Notifications
You must be signed in to change notification settings - Fork 66
/
excel.style.yml
558 lines (517 loc) · 20.2 KB
/
excel.style.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
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
### YamlMime:TSType
name: Excel.Style
uid: 'excel!Excel.Style:class'
package: excel!
fullName: Excel.Style
summary: An object encapsulating a style's format and other properties.
remarks: '\[ [API set: ExcelApi 1.7](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
type: class
properties:
- name: autoIndent
uid: 'excel!Excel.Style#autoIndent:member'
package: excel!
fullName: autoIndent
summary: Specifies if text is automatically indented when the text alignment in a cell is set to equal distribution.
remarks: '\[ [API set: ExcelApi 1.8](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'autoIndent: boolean;'
return:
type: boolean
- name: borders
uid: 'excel!Excel.Style#borders:member'
package: excel!
fullName: borders
summary: A collection of four border objects that represent the style of the four borders.
remarks: '\[ [API set: ExcelApi 1.7](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'readonly borders: Excel.RangeBorderCollection;'
return:
type: '<xref uid="excel!Excel.RangeBorderCollection:class" />'
- name: builtIn
uid: 'excel!Excel.Style#builtIn:member'
package: excel!
fullName: builtIn
summary: Specifies if the style is a built-in style.
remarks: '\[ [API set: ExcelApi 1.7](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'readonly builtIn: boolean;'
return:
type: boolean
- name: context
uid: 'excel!Excel.Style#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: fill
uid: 'excel!Excel.Style#fill:member'
package: excel!
fullName: fill
summary: The fill of the style.
remarks: '\[ [API set: ExcelApi 1.7](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'readonly fill: Excel.RangeFill;'
return:
type: '<xref uid="excel!Excel.RangeFill:class" />'
- name: font
uid: 'excel!Excel.Style#font:member'
package: excel!
fullName: font
summary: A `Font` object that represents the font of the style.
remarks: >-
\[ [API set: ExcelApi 1.7](/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/42-range/style.yaml
await Excel.run(async (context) => {
let style = context.workbook.styles.getItem("Normal");
style.font.load("bold, color, italic, name, size");
style.fill.load("color");
await context.sync();
console.log("Bold: " + style.font.bold);
console.log("Font color: " + style.font.color);
console.log("Italic: " + style.font.italic);
console.log("Name: " + style.font.name);
console.log("Size: " + style.font.size);
console.log("Fill color: " + style.fill.color);
});
```
isPreview: false
isDeprecated: false
syntax:
content: 'readonly font: Excel.RangeFont;'
return:
type: '<xref uid="excel!Excel.RangeFont:class" />'
- name: formulaHidden
uid: 'excel!Excel.Style#formulaHidden:member'
package: excel!
fullName: formulaHidden
summary: Specifies if the formula will be hidden when the worksheet is protected.
remarks: '\[ [API set: ExcelApi 1.7](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'formulaHidden: boolean;'
return:
type: boolean
- name: horizontalAlignment
uid: 'excel!Excel.Style#horizontalAlignment:member'
package: excel!
fullName: horizontalAlignment
summary: Represents the horizontal alignment for the style. See `Excel.HorizontalAlignment` for details.
remarks: >-
\[ [API set: ExcelApi 1.7](/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/42-range/style.yaml
await Excel.run(async (context) => {
let worksheet = context.workbook.worksheets.getItem("Sample");
let range = worksheet.getRange("A1:E1");
// Apply built-in style.
// Styles are in the Home tab ribbon.
range.style = Excel.BuiltInStyle.neutral;
range.format.horizontalAlignment = "Right";
await context.sync();
});
```
isPreview: false
isDeprecated: false
syntax:
content: >-
horizontalAlignment: Excel.HorizontalAlignment | "General" | "Left" | "Center" | "Right" | "Fill" | "Justify" |
"CenterAcrossSelection" | "Distributed";
return:
type: >-
<xref uid="excel!Excel.HorizontalAlignment:enum" /> | "General" | "Left" | "Center" | "Right" | "Fill" |
"Justify" | "CenterAcrossSelection" | "Distributed"
- name: includeAlignment
uid: 'excel!Excel.Style#includeAlignment:member'
package: excel!
fullName: includeAlignment
summary: >-
Specifies if the style includes the auto indent, horizontal alignment, vertical alignment, wrap text, indent
level, and text orientation properties.
remarks: '\[ [API set: ExcelApi 1.7](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'includeAlignment: boolean;'
return:
type: boolean
- name: includeBorder
uid: 'excel!Excel.Style#includeBorder:member'
package: excel!
fullName: includeBorder
summary: 'Specifies if the style includes the color, color index, line style, and weight border properties.'
remarks: '\[ [API set: ExcelApi 1.7](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'includeBorder: boolean;'
return:
type: boolean
- name: includeFont
uid: 'excel!Excel.Style#includeFont:member'
package: excel!
fullName: includeFont
summary: >-
Specifies if the style includes the background, bold, color, color index, font style, italic, name, size,
strikethrough, subscript, superscript, and underline font properties.
remarks: '\[ [API set: ExcelApi 1.7](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'includeFont: boolean;'
return:
type: boolean
- name: includeNumber
uid: 'excel!Excel.Style#includeNumber:member'
package: excel!
fullName: includeNumber
summary: Specifies if the style includes the number format property.
remarks: '\[ [API set: ExcelApi 1.7](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'includeNumber: boolean;'
return:
type: boolean
- name: includePatterns
uid: 'excel!Excel.Style#includePatterns:member'
package: excel!
fullName: includePatterns
summary: >-
Specifies if the style includes the color, color index, invert if negative, pattern, pattern color, and pattern
color index interior properties.
remarks: '\[ [API set: ExcelApi 1.7](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'includePatterns: boolean;'
return:
type: boolean
- name: includeProtection
uid: 'excel!Excel.Style#includeProtection:member'
package: excel!
fullName: includeProtection
summary: Specifies if the style includes the formula hidden and locked protection properties.
remarks: '\[ [API set: ExcelApi 1.7](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'includeProtection: boolean;'
return:
type: boolean
- name: indentLevel
uid: 'excel!Excel.Style#indentLevel:member'
package: excel!
fullName: indentLevel
summary: An integer from 0 to 250 that indicates the indent level for the style.
remarks: '\[ [API set: ExcelApi 1.7](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'indentLevel: number;'
return:
type: number
- name: locked
uid: 'excel!Excel.Style#locked:member'
package: excel!
fullName: locked
summary: Specifies if the object is locked when the worksheet is protected.
remarks: '\[ [API set: ExcelApi 1.7](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'locked: boolean;'
return:
type: boolean
- name: name
uid: 'excel!Excel.Style#name:member'
package: excel!
fullName: name
summary: The name of the style.
remarks: '\[ [API set: ExcelApi 1.7](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'readonly name: string;'
return:
type: string
- name: numberFormat
uid: 'excel!Excel.Style#numberFormat:member'
package: excel!
fullName: numberFormat
summary: The format code of the number format for the style.
remarks: '\[ [API set: ExcelApi 1.7](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'numberFormat: string;'
return:
type: string
- name: numberFormatLocal
uid: 'excel!Excel.Style#numberFormatLocal:member'
package: excel!
fullName: numberFormatLocal
summary: The localized format code of the number format for the style.
remarks: '\[ [API set: ExcelApi 1.7](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'numberFormatLocal: string;'
return:
type: string
- name: readingOrder
uid: 'excel!Excel.Style#readingOrder:member'
package: excel!
fullName: readingOrder
summary: The reading order for the style.
remarks: '\[ [API set: ExcelApi 1.7](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'readingOrder: Excel.ReadingOrder | "Context" | "LeftToRight" | "RightToLeft";'
return:
type: '<xref uid="excel!Excel.ReadingOrder:enum" /> | "Context" | "LeftToRight" | "RightToLeft"'
- name: shrinkToFit
uid: 'excel!Excel.Style#shrinkToFit:member'
package: excel!
fullName: shrinkToFit
summary: Specifies if text automatically shrinks to fit in the available column width.
remarks: '\[ [API set: ExcelApi 1.7](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'shrinkToFit: boolean;'
return:
type: boolean
- name: textOrientation
uid: 'excel!Excel.Style#textOrientation:member'
package: excel!
fullName: textOrientation
summary: The text orientation for the style.
remarks: '\[ [API set: ExcelApi 1.8](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'textOrientation: number;'
return:
type: number
- name: verticalAlignment
uid: 'excel!Excel.Style#verticalAlignment:member'
package: excel!
fullName: verticalAlignment
summary: Specifies the vertical alignment for the style. See `Excel.VerticalAlignment` for details.
remarks: '\[ [API set: ExcelApi 1.7](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'verticalAlignment: Excel.VerticalAlignment | "Top" | "Center" | "Bottom" | "Justify" | "Distributed";'
return:
type: '<xref uid="excel!Excel.VerticalAlignment:enum" /> | "Top" | "Center" | "Bottom" | "Justify" | "Distributed"'
- name: wrapText
uid: 'excel!Excel.Style#wrapText:member'
package: excel!
fullName: wrapText
summary: Specifies if Excel wraps the text in the object.
remarks: '\[ [API set: ExcelApi 1.7](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'wrapText: boolean;'
return:
type: boolean
methods:
- name: delete()
uid: 'excel!Excel.Style#delete:member(1)'
package: excel!
fullName: delete()
summary: Deletes this style.
remarks: >-
\[ [API set: ExcelApi 1.7](/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/42-range/style.yaml
await Excel.run(async (context) => {
let style = context.workbook.styles.getItem("Diagonal Orientation Style");
// Delete the diagonal orientation style from the style collection.
// Styles are in the Home tab ribbon.
style.delete();
await context.sync();
console.log("Successfully deleted the diagonal orientation style from the Home tab ribbon.");
});
```
isPreview: false
isDeprecated: false
syntax:
content: 'delete(): void;'
return:
type: void
description: ''
- name: load(options)
uid: 'excel!Excel.Style#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.StyleLoadOptions): Excel.Style;'
parameters:
- id: options
description: Provides options for which properties of the object to load.
type: '<xref uid="excel!Excel.Interfaces.StyleLoadOptions:interface" />'
return:
type: '<xref uid="excel!Excel.Style:class" />'
description: >-
#### Examples
```TypeScript
// Link to full sample:
https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/excel/42-range/style.yaml
await Excel.run(async (context) => {
let style = context.workbook.styles.getItem("Diagonal Orientation Style");
style.load("textOrientation, horizontalAlignment, autoIndent, readingOrder, wrapText, includeProtection, shrinkToFit, locked");
await context.sync();
console.log("Orientation: " + style.textOrientation);
console.log("Horizontal alignment: " + style.horizontalAlignment);
console.log("Add indent: " + style.autoIndent);
console.log("Reading order: " + style.readingOrder);
console.log("Wrap text: " + style.wrapText);
console.log("Include protection: " + style.includeProtection);
console.log("Shrink to fit: " + style.shrinkToFit);
console.log("Style locked: " + style.locked);
});
```
- name: load(propertyNames)
uid: 'excel!Excel.Style#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.Style;'
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.Style:class" />'
description: ''
- name: load(propertyNamesAndPaths)
uid: 'excel!Excel.Style#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?: {
select?: string;
expand?: string;
}): Excel.Style;
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: |-
{
select?: string;
expand?: string;
}
return:
type: '<xref uid="excel!Excel.Style:class" />'
description: ''
- name: 'set(properties, options)'
uid: 'excel!Excel.Style#set:member(1)'
package: excel!
fullName: 'set(properties, options)'
summary: >-
Sets multiple properties of an object at the same time. You can pass either a plain object with the appropriate
properties, or another API object of the same type.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: 'set(properties: Interfaces.StyleUpdateData, options?: OfficeExtension.UpdateOptions): void;'
parameters:
- id: properties
description: >-
A JavaScript object with properties that are structured isomorphically to the properties of the object on
which the method is called.
type: '<xref uid="excel!Excel.Interfaces.StyleUpdateData:interface" />'
- id: options
description: Provides an option to suppress errors if the properties object tries to set any read-only properties.
type: '<xref uid="office!OfficeExtension.UpdateOptions:interface" />'
return:
type: void
description: ''
- name: set(properties)
uid: 'excel!Excel.Style#set:member(2)'
package: excel!
fullName: set(properties)
summary: 'Sets multiple properties on the object at the same time, based on an existing loaded object.'
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: 'set(properties: Excel.Style): void;'
parameters:
- id: properties
description: ''
type: '<xref uid="excel!Excel.Style:class" />'
return:
type: void
description: ''
- name: toJSON()
uid: 'excel!Excel.Style#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.Style` object is an API object, the `toJSON` method returns a plain
JavaScript object (typed as `Excel.Interfaces.StyleData`<!-- -->) that contains shallow copies of any loaded child
properties from the original object.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: 'toJSON(): Excel.Interfaces.StyleData;'
return:
type: '<xref uid="excel!Excel.Interfaces.StyleData:interface" />'
description: ''
extends: '<xref uid="office!OfficeExtension.ClientObject:class" />'