-
Notifications
You must be signed in to change notification settings - Fork 66
/
excel.conditionalrangeborder.yml
201 lines (201 loc) · 8.16 KB
/
excel.conditionalrangeborder.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
### YamlMime:TSType
name: Excel.ConditionalRangeBorder
uid: 'excel!Excel.ConditionalRangeBorder:class'
package: excel!
fullName: Excel.ConditionalRangeBorder
summary: Represents the border of an object.
remarks: '\[ [API set: ExcelApi 1.6](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
type: class
properties:
- name: color
uid: 'excel!Excel.ConditionalRangeBorder#color:member'
package: excel!
fullName: color
summary: >-
HTML color code representing the color of the border line, in the form \#RRGGBB (e.g., "FFA500") or as a named
HTML color (e.g., "orange").
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: context
uid: 'excel!Excel.ConditionalRangeBorder#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: sideIndex
uid: 'excel!Excel.ConditionalRangeBorder#sideIndex:member'
package: excel!
fullName: sideIndex
summary: >-
Constant value that indicates the specific side of the border. See `Excel.ConditionalRangeBorderIndex` for
details.
remarks: '\[ [API set: ExcelApi 1.6](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: 'readonly sideIndex: Excel.ConditionalRangeBorderIndex | "EdgeTop" | "EdgeBottom" | "EdgeLeft" | "EdgeRight";'
return:
type: >-
<xref uid="excel!Excel.ConditionalRangeBorderIndex:enum" /> | "EdgeTop" | "EdgeBottom" | "EdgeLeft" |
"EdgeRight"
- name: style
uid: 'excel!Excel.ConditionalRangeBorder#style:member'
package: excel!
fullName: style
summary: >-
One of the constants of line style specifying the line style for the border. See `Excel.BorderLineStyle` for
details.
remarks: '\[ [API set: ExcelApi 1.6](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]'
isPreview: false
isDeprecated: false
syntax:
content: >-
style: Excel.ConditionalRangeBorderLineStyle | "None" | "Continuous" | "Dash" | "DashDot" | "DashDotDot" |
"Dot";
return:
type: >-
<xref uid="excel!Excel.ConditionalRangeBorderLineStyle:enum" /> | "None" | "Continuous" | "Dash" | "DashDot" |
"DashDotDot" | "Dot"
methods:
- name: load(options)
uid: 'excel!Excel.ConditionalRangeBorder#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.ConditionalRangeBorderLoadOptions): Excel.ConditionalRangeBorder;'
parameters:
- id: options
description: Provides options for which properties of the object to load.
type: '<xref uid="excel!Excel.Interfaces.ConditionalRangeBorderLoadOptions:interface" />'
return:
type: '<xref uid="excel!Excel.ConditionalRangeBorder:class" />'
description: ''
- name: load(propertyNames)
uid: 'excel!Excel.ConditionalRangeBorder#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.ConditionalRangeBorder;'
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.ConditionalRangeBorder:class" />'
description: ''
- name: load(propertyNamesAndPaths)
uid: 'excel!Excel.ConditionalRangeBorder#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.ConditionalRangeBorder;
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.ConditionalRangeBorder:class" />'
description: ''
- name: 'set(properties, options)'
uid: 'excel!Excel.ConditionalRangeBorder#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.ConditionalRangeBorderUpdateData, 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.ConditionalRangeBorderUpdateData: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.ConditionalRangeBorder#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.ConditionalRangeBorder): void;'
parameters:
- id: properties
description: ''
type: '<xref uid="excel!Excel.ConditionalRangeBorder:class" />'
return:
type: void
description: ''
- name: toJSON()
uid: 'excel!Excel.ConditionalRangeBorder#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.ConditionalRangeBorder` object is an API object, the `toJSON` method
returns a plain JavaScript object (typed as `Excel.Interfaces.ConditionalRangeBorderData`<!-- -->) that contains
shallow copies of any loaded child properties from the original object.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: 'toJSON(): Excel.Interfaces.ConditionalRangeBorderData;'
return:
type: '<xref uid="excel!Excel.Interfaces.ConditionalRangeBorderData:interface" />'
description: ''
extends: '<xref uid="office!OfficeExtension.ClientObject:class" />'