Skip to content

Commit 808a2f3

Browse files
authored
Testing removal of string overload adjustment (#2313)
1 parent b4a8054 commit 808a2f3

File tree

991 files changed

+68329
-22521
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

991 files changed

+68329
-22521
lines changed

docs/docs-ref-autogen/excel/excel.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -865,6 +865,7 @@ interfaces:
865865
- excel!Excel.Interfaces.QueryCollectionUpdateData:interface
866866
- excel!Excel.Interfaces.QueryData:interface
867867
- excel!Excel.Interfaces.QueryLoadOptions:interface
868+
- excel!Excel.Interfaces.QueryUpdateData:interface
868869
- excel!Excel.Interfaces.RangeAreasCollectionData:interface
869870
- excel!Excel.Interfaces.RangeAreasCollectionLoadOptions:interface
870871
- excel!Excel.Interfaces.RangeAreasCollectionUpdateData:interface

docs/docs-ref-autogen/excel/excel/excel.application.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -275,10 +275,10 @@ methods:
275275
return:
276276
type: void
277277
description: ''
278-
- name: calculate(calculationTypeString)
278+
- name: calculate(calculationType)
279279
uid: excel!Excel.Application#calculate:member(2)
280280
package: excel!
281-
fullName: calculate(calculationTypeString)
281+
fullName: calculate(calculationType)
282282
summary: Recalculate all currently opened workbooks in Excel.
283283
remarks: >-
284284
\[ [API set: ExcelApi
@@ -301,10 +301,10 @@ methods:
301301
isDeprecated: false
302302
syntax:
303303
content: >-
304-
calculate(calculationTypeString: "Recalculate" | "Full" |
305-
"FullRebuild"): void;
304+
calculate(calculationType: "Recalculate" | "Full" | "FullRebuild"):
305+
void;
306306
parameters:
307-
- id: calculationTypeString
307+
- id: calculationType
308308
description: >-
309309
Specifies the calculation type to use. See `Excel.CalculationType`
310310
for details.

docs/docs-ref-autogen/excel/excel/excel.bindingcollection.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -88,10 +88,10 @@ methods:
8888
return:
8989
type: <xref uid="excel!Excel.Binding:class" />
9090
description: ''
91-
- name: add(range, bindingTypeString, id)
91+
- name: add(range, bindingType, id)
9292
uid: excel!Excel.BindingCollection#add:member(2)
9393
package: excel!
94-
fullName: add(range, bindingTypeString, id)
94+
fullName: add(range, bindingType, id)
9595
summary: Add a new binding to a particular Range.
9696
remarks: >-
9797
\[ [API set: ExcelApi
@@ -101,15 +101,15 @@ methods:
101101
isDeprecated: false
102102
syntax:
103103
content: >-
104-
add(range: Range | string, bindingTypeString: "Range" | "Table" |
105-
"Text", id: string): Excel.Binding;
104+
add(range: Range | string, bindingType: "Range" | "Table" | "Text", id:
105+
string): Excel.Binding;
106106
parameters:
107107
- id: range
108108
description: >-
109109
Range to bind the binding to. May be a `Range` object or a string.
110110
If string, must contain the full address, including the sheet name
111111
type: <xref uid="excel!Excel.Range:class" /> | string
112-
- id: bindingTypeString
112+
- id: bindingType
113113
description: Type of binding. See `Excel.BindingType`<!-- -->.
114114
type: '"Range" | "Table" | "Text"'
115115
- id: id
@@ -149,10 +149,10 @@ methods:
149149
return:
150150
type: <xref uid="excel!Excel.Binding:class" />
151151
description: ''
152-
- name: addFromNamedItem(name, bindingTypeString, id)
152+
- name: addFromNamedItem(name, bindingType, id)
153153
uid: excel!Excel.BindingCollection#addFromNamedItem:member(2)
154154
package: excel!
155-
fullName: addFromNamedItem(name, bindingTypeString, id)
155+
fullName: addFromNamedItem(name, bindingType, id)
156156
summary: >-
157157
Add a new binding based on a named item in the workbook. If the named item
158158
references to multiple areas, the `InvalidReference` error will be
@@ -165,13 +165,13 @@ methods:
165165
isDeprecated: false
166166
syntax:
167167
content: >-
168-
addFromNamedItem(name: string, bindingTypeString: "Range" | "Table" |
169-
"Text", id: string): Excel.Binding;
168+
addFromNamedItem(name: string, bindingType: "Range" | "Table" | "Text",
169+
id: string): Excel.Binding;
170170
parameters:
171171
- id: name
172172
description: Name from which to create binding.
173173
type: string
174-
- id: bindingTypeString
174+
- id: bindingType
175175
description: Type of binding. See `Excel.BindingType`<!-- -->.
176176
type: '"Range" | "Table" | "Text"'
177177
- id: id
@@ -207,10 +207,10 @@ methods:
207207
return:
208208
type: <xref uid="excel!Excel.Binding:class" />
209209
description: ''
210-
- name: addFromSelection(bindingTypeString, id)
210+
- name: addFromSelection(bindingType, id)
211211
uid: excel!Excel.BindingCollection#addFromSelection:member(2)
212212
package: excel!
213-
fullName: addFromSelection(bindingTypeString, id)
213+
fullName: addFromSelection(bindingType, id)
214214
summary: >-
215215
Add a new binding based on the current selection. If the selection has
216216
multiple areas, the `InvalidReference` error will be returned.
@@ -222,10 +222,10 @@ methods:
222222
isDeprecated: false
223223
syntax:
224224
content: >-
225-
addFromSelection(bindingTypeString: "Range" | "Table" | "Text", id:
226-
string): Excel.Binding;
225+
addFromSelection(bindingType: "Range" | "Table" | "Text", id: string):
226+
Excel.Binding;
227227
parameters:
228-
- id: bindingTypeString
228+
- id: bindingType
229229
description: Type of binding. See `Excel.BindingType`<!-- -->.
230230
type: '"Range" | "Table" | "Text"'
231231
- id: id

docs/docs-ref-autogen/excel/excel/excel.chart.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -704,10 +704,10 @@ methods:
704704
return:
705705
type: <xref uid="office!OfficeExtension.ClientResult:class" />&lt;string&gt;
706706
description: ''
707-
- name: getImage(width, height, fittingModeString)
707+
- name: getImage(width, height, fittingMode)
708708
uid: excel!Excel.Chart#getImage:member(2)
709709
package: excel!
710-
fullName: getImage(width, height, fittingModeString)
710+
fullName: getImage(width, height, fittingMode)
711711
summary: >-
712712
Renders the chart as a Base64-encoded image by scaling the chart to fit
713713
the specified dimensions. The aspect ratio is preserved as part of the
@@ -720,7 +720,7 @@ methods:
720720
isDeprecated: false
721721
syntax:
722722
content: >-
723-
getImage(width?: number, height?: number, fittingModeString?: "Fit" |
723+
getImage(width?: number, height?: number, fittingMode?: "Fit" |
724724
"FitAndCenter" | "Fill"): OfficeExtension.ClientResult<string>;
725725
parameters:
726726
- id: width
@@ -729,7 +729,7 @@ methods:
729729
- id: height
730730
description: Optional. The desired height of the resulting image.
731731
type: number
732-
- id: fittingModeString
732+
- id: fittingMode
733733
description: >-
734734
Optional. The method used to scale the chart to the specified
735735
dimensions (if both height and width are set).
@@ -921,10 +921,10 @@ methods:
921921
return:
922922
type: void
923923
description: ''
924-
- name: setData(sourceData, seriesByString)
924+
- name: setData(sourceData, seriesBy)
925925
uid: excel!Excel.Chart#setData:member(2)
926926
package: excel!
927-
fullName: setData(sourceData, seriesByString)
927+
fullName: setData(sourceData, seriesBy)
928928
summary: Resets the source data for the chart.
929929
remarks: >-
930930
\[ [API set: ExcelApi
@@ -934,13 +934,13 @@ methods:
934934
isDeprecated: false
935935
syntax:
936936
content: >-
937-
setData(sourceData: Range, seriesByString?: "Auto" | "Columns" |
938-
"Rows"): void;
937+
setData(sourceData: Range, seriesBy?: "Auto" | "Columns" | "Rows"):
938+
void;
939939
parameters:
940940
- id: sourceData
941941
description: The range object corresponding to the source data.
942942
type: <xref uid="excel!Excel.Range:class" />
943-
- id: seriesByString
943+
- id: seriesBy
944944
description: >-
945945
Specifies the way columns or rows are used as data series on the
946946
chart. Can be one of the following: Auto (default), Rows, and

docs/docs-ref-autogen/excel/excel/excel.chartaxes.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,10 @@ methods:
121121
return:
122122
type: <xref uid="excel!Excel.ChartAxis:class" />
123123
description: ''
124-
- name: getItem(typeString, groupString)
124+
- name: getItem(type, group)
125125
uid: excel!Excel.ChartAxes#getItem:member(2)
126126
package: excel!
127-
fullName: getItem(typeString, groupString)
127+
fullName: getItem(type, group)
128128
summary: Returns the specific axis identified by type and group.
129129
remarks: >-
130130
\[ [API set: ExcelApi
@@ -134,13 +134,13 @@ methods:
134134
isDeprecated: false
135135
syntax:
136136
content: >-
137-
getItem(typeString: "Invalid" | "Category" | "Value" | "Series",
138-
groupString?: "Primary" | "Secondary"): Excel.ChartAxis;
137+
getItem(type: "Invalid" | "Category" | "Value" | "Series", group?:
138+
"Primary" | "Secondary"): Excel.ChartAxis;
139139
parameters:
140-
- id: typeString
140+
- id: type
141141
description: Specifies the axis type. See `Excel.ChartAxisType` for details.
142142
type: '"Invalid" | "Category" | "Value" | "Series"'
143-
- id: groupString
143+
- id: group
144144
description: >-
145145
Optional. Specifies the axis group. See `Excel.ChartAxisGroup` for
146146
details.

docs/docs-ref-autogen/excel/excel/excel.chartcollection.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ methods:
111111
return:
112112
type: <xref uid="excel!Excel.Chart:class" />
113113
description: ''
114-
- name: add(typeString, sourceData, seriesByString)
114+
- name: add(type, sourceData, seriesBy)
115115
uid: excel!Excel.ChartCollection#add:member(2)
116116
package: excel!
117-
fullName: add(typeString, sourceData, seriesByString)
117+
fullName: add(type, sourceData, seriesBy)
118118
summary: Creates a new chart.
119119
remarks: >-
120120
\[ [API set: ExcelApi
@@ -124,7 +124,7 @@ methods:
124124
isDeprecated: false
125125
syntax:
126126
content: >-
127-
add(typeString: "Invalid" | "ColumnClustered" | "ColumnStacked" |
127+
add(type: "Invalid" | "ColumnClustered" | "ColumnStacked" |
128128
"ColumnStacked100" | "3DColumnClustered" | "3DColumnStacked" |
129129
"3DColumnStacked100" | "BarClustered" | "BarStacked" | "BarStacked100" |
130130
"3DBarClustered" | "3DBarStacked" | "3DBarStacked100" | "LineStacked" |
@@ -146,10 +146,10 @@ methods:
146146
"PyramidCol" | "3DColumn" | "Line" | "3DLine" | "3DPie" | "Pie" |
147147
"XYScatter" | "3DArea" | "Area" | "Doughnut" | "Radar" | "Histogram" |
148148
"Boxwhisker" | "Pareto" | "RegionMap" | "Treemap" | "Waterfall" |
149-
"Sunburst" | "Funnel", sourceData: Range, seriesByString?: "Auto" |
150-
"Columns" | "Rows"): Excel.Chart;
149+
"Sunburst" | "Funnel", sourceData: Range, seriesBy?: "Auto" | "Columns"
150+
| "Rows"): Excel.Chart;
151151
parameters:
152-
- id: typeString
152+
- id: type
153153
description: Represents the type of a chart. See `Excel.ChartType` for details.
154154
type: >-
155155
"Invalid" | "ColumnClustered" | "ColumnStacked" | "ColumnStacked100"
@@ -179,7 +179,7 @@ methods:
179179
- id: sourceData
180180
description: The `Range` object corresponding to the source data.
181181
type: <xref uid="excel!Excel.Range:class" />
182-
- id: seriesByString
182+
- id: seriesBy
183183
description: >-
184184
Optional. Specifies the way columns or rows are used as data series
185185
on the chart. See `Excel.ChartSeriesBy` for details.

docs/docs-ref-autogen/excel/excel/excel.chartdatalabel.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ properties:
275275
uid: excel!Excel.ChartDataLabel#numberFormat:member
276276
package: excel!
277277
fullName: numberFormat
278-
summary: String value that represents the format code for data label.
278+
summary: Specifies the format code for data label.
279279
remarks: >-
280280
\[ [API set: ExcelApi
281281
1.8](/javascript/api/requirement-sets/excel/excel-api-requirement-sets) \]
@@ -329,11 +329,11 @@ properties:
329329
package: excel!
330330
fullName: showAsStickyCallout
331331
summary: >-
332-
Gets a value that indicates whether the data label is shown as a callout
333-
with the tail anchor attached to the data point. If `true`<!-- -->, the
334-
callout is one of the following values: "AccentCallout1",
335-
"AccentCallout2", "BorderCallout1", "BorderCallout2", "WedgeRectCallout",
336-
"WedgeRRectCallout" or "WedgeEllipseCallout". See
332+
Specifies if the data label is shown as a callout with the tail anchor
333+
attached to the data point. If `true`<!-- -->, the callout is one of the
334+
following values: "AccentCallout1", "AccentCallout2", "BorderCallout1",
335+
"BorderCallout2", "WedgeRectCallout", "WedgeRRectCallout" or
336+
"WedgeEllipseCallout". See
337337
[GeometricShapeType](xref:excel!Excel.GeometricShapeType:enum) for more
338338
details.
339339
remarks: >-

docs/docs-ref-autogen/excel/excel/excel.chartdatalabelanchor.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ properties:
3232
package: excel!
3333
fullName: left
3434
summary: >-
35-
Represents the distance, in points, from the anchor to the left edge of
36-
the chart data label. Note that when getting the value, it may differ
37-
slightly from the set value.
35+
Specifies the distance, in points, from the anchor to the left edge of the
36+
chart data label. Note that when getting the value, it may differ slightly
37+
from the set value.
3838
remarks: >-
3939
\[ [API set: ExcelApi
4040
1.19](/javascript/api/requirement-sets/excel/excel-api-requirement-sets)
@@ -51,7 +51,7 @@ properties:
5151
package: excel!
5252
fullName: top
5353
summary: >-
54-
Represents the distance, in points, from the anchor to the top edge of the
54+
Specifies the distance, in points, from the anchor to the top edge of the
5555
chart data label. Note that when getting the value, it may differ slightly
5656
from the set value.
5757
remarks: >-

docs/docs-ref-autogen/excel/excel/excel.chartdatalabels.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -295,11 +295,11 @@ properties:
295295
package: excel!
296296
fullName: showAsStickyCallout
297297
summary: >-
298-
Gets a value that indicates whether the data labels are shown as a callout
299-
with the tail anchor attached to the data point. If `true`<!-- -->, the
300-
callout is one of the following values: "AccentCallout1",
301-
"AccentCallout2", "BorderCallout1", "BorderCallout2", "WedgeRectCallout",
302-
"WedgeRRectCallout" or "WedgeEllipseCallout". See
298+
Specifies if the data labels are shown as a callout with the tail anchor
299+
attached to the data point. If `true`<!-- -->, the callout is one of the
300+
following values: "AccentCallout1", "AccentCallout2", "BorderCallout1",
301+
"BorderCallout2", "WedgeRectCallout", "WedgeRRectCallout" or
302+
"WedgeEllipseCallout". See
303303
[GeometricShapeType](xref:excel!Excel.GeometricShapeType:enum) for more
304304
details.
305305
remarks: >-
@@ -348,9 +348,8 @@ properties:
348348
package: excel!
349349
fullName: showLeaderLines
350350
summary: >-
351-
Specifies a value that indicates whether leader lines are displayed for
352-
the data labels. `true` if leader lines are shown; otherwise, `false`<!--
353-
-->.
351+
Specifies if leader lines are displayed for the data labels. `true` if
352+
leader lines are shown; otherwise, `false`<!-- -->.
354353
remarks: >-
355354
\[ [API set: ExcelApi
356355
1.19](/javascript/api/requirement-sets/excel/excel-api-requirement-sets)

0 commit comments

Comments
 (0)