-
Notifications
You must be signed in to change notification settings - Fork 66
/
excel.interfaces.conditionalrangefontupdatedata.yml
73 lines (73 loc) · 2.8 KB
/
excel.interfaces.conditionalrangefontupdatedata.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
### YamlMime:TSType
name: Excel.Interfaces.ConditionalRangeFontUpdateData
uid: 'excel!Excel.Interfaces.ConditionalRangeFontUpdateData:interface'
package: excel!
fullName: Excel.Interfaces.ConditionalRangeFontUpdateData
summary: >-
An interface for updating data on the `ConditionalRangeFont` object, for use in `conditionalRangeFont.set({ ...
})`<!-- -->.
remarks: ''
isPreview: false
isDeprecated: false
type: interface
properties:
- name: bold
uid: 'excel!Excel.Interfaces.ConditionalRangeFontUpdateData#bold:member'
package: excel!
fullName: bold
summary: Specifies if the font is bold.
remarks: '\[ [API set: ExcelApi 1.6](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'bold?: boolean;'
return:
type: boolean
- name: color
uid: 'excel!Excel.Interfaces.ConditionalRangeFontUpdateData#color:member'
package: excel!
fullName: color
summary: 'HTML color code representation of the text color (e.g., \#FF0000 represents Red).'
remarks: '\[ [API set: ExcelApi 1.6](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'color?: string;'
return:
type: string
- name: italic
uid: 'excel!Excel.Interfaces.ConditionalRangeFontUpdateData#italic:member'
package: excel!
fullName: italic
summary: Specifies if the font is italic.
remarks: '\[ [API set: ExcelApi 1.6](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'italic?: boolean;'
return:
type: boolean
- name: strikethrough
uid: 'excel!Excel.Interfaces.ConditionalRangeFontUpdateData#strikethrough:member'
package: excel!
fullName: strikethrough
summary: Specifies the strikethrough status of the font.
remarks: '\[ [API set: ExcelApi 1.6](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'strikethrough?: boolean;'
return:
type: boolean
- name: underline
uid: 'excel!Excel.Interfaces.ConditionalRangeFontUpdateData#underline:member'
package: excel!
fullName: underline
summary: The type of underline applied to the font. See `Excel.ConditionalRangeFontUnderlineStyle` for details.
remarks: '\[ [API set: ExcelApi 1.6](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'underline?: Excel.ConditionalRangeFontUnderlineStyle | "None" | "Single" | "Double";'
return:
type: '<xref uid="excel!Excel.ConditionalRangeFontUnderlineStyle:enum" /> | "None" | "Single" | "Double"'