Skip to content

Commit 9b19902

Browse files
author
bhuvaneshdhakshinmaoorthy
committed
993171: Modified sheet name and regarding the path specified location
1 parent 67aed18 commit 9b19902

226 files changed

Lines changed: 193 additions & 209 deletions

File tree

Some content is hidden

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

Document-Processing/Excel/Spreadsheet/Angular/cell-range.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ The following code example shows the wrap text functionality in spreadsheet.
2525

2626
{% tabs %}
2727
{% highlight ts tabtitle="app.ts" %}
28-
{% include code-snippet/spreadsheet/angular/wrap-text-cs1/src/app.component.ts %}
28+
{% include code-snippet/spreadsheet/angular/wrap-text-cs1/src/app.ts %}
2929
{% endhighlight %}
3030

3131
{% highlight ts tabtitle="main.ts" %}
@@ -65,7 +65,7 @@ The following code example shows the merge cells operation in spreadsheet.
6565

6666
{% tabs %}
6767
{% highlight ts tabtitle="app.ts" %}
68-
{% include code-snippet/spreadsheet/angular/merge-cells-cs1/src/app.component.ts %}
68+
{% include code-snippet/spreadsheet/angular/merge-cells-cs1/src/app.ts %}
6969
{% endhighlight %}
7070

7171
{% highlight ts tabtitle="main.ts" %}
@@ -126,7 +126,7 @@ You can clear the highlighted invalid data by using the following ways,
126126

127127
{% tabs %}
128128
{% highlight ts tabtitle="app.ts" %}
129-
{% include code-snippet/spreadsheet/angular/data-validation-cs1/src/app.component.ts %}
129+
{% include code-snippet/spreadsheet/angular/data-validation-cs1/src/app.ts %}
130130
{% endhighlight %}
131131

132132
{% highlight ts tabtitle="main.ts" %}
@@ -155,7 +155,7 @@ The following code example demonstrates how to add custom data validation with a
155155

156156
{% tabs %}
157157
{% highlight ts tabtitle="app.ts" %}
158-
{% include code-snippet/spreadsheet/angular/data-validation-cs2/src/app.component.ts %}
158+
{% include code-snippet/spreadsheet/angular/data-validation-cs2/src/app.ts %}
159159
{% endhighlight %}
160160

161161
{% highlight ts tabtitle="main.ts" %}
@@ -239,7 +239,7 @@ In the following sample, you can enable/disable the fill option on the button cl
239239

240240
{% tabs %}
241241
{% highlight ts tabtitle="app.ts" %}
242-
{% include code-snippet/spreadsheet/angular/autofill-cs1/src/app.component.ts %}
242+
{% include code-snippet/spreadsheet/angular/autofill-cs1/src/app.ts %}
243243
{% endhighlight %}
244244

245245
{% highlight ts tabtitle="main.ts" %}
@@ -282,7 +282,7 @@ Clear the cell contents and formats in the Spreadsheet document by using the [cl
282282

283283
{% tabs %}
284284
{% highlight ts tabtitle="app.ts" %}
285-
{% include code-snippet/spreadsheet/angular/clear-cs1/src/app.component.ts %}
285+
{% include code-snippet/spreadsheet/angular/clear-cs1/src/app.ts %}
286286
{% endhighlight %}
287287

288288
{% highlight ts tabtitle="main.ts" %}

Document-Processing/Excel/Spreadsheet/Angular/clipboard.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Paste can be done in one of the following ways.
6161
6262
{% tabs %}
6363
{% highlight ts tabtitle="app.ts" %}
64-
{% include code-snippet/spreadsheet/angular/clipboard-cs1/src/app.component.ts %}
64+
{% include code-snippet/spreadsheet/angular/clipboard-cs1/src/app.ts %}
6565
{% endhighlight %}
6666

6767
{% highlight ts tabtitle="main.ts" %}
@@ -77,7 +77,7 @@ The following example shows, how to prevent the paste action in spreadsheet. In
7777

7878
{% tabs %}
7979
{% highlight ts tabtitle="app.ts" %}
80-
{% include code-snippet/spreadsheet/angular/clipboard-cs2/src/app.component.ts %}
80+
{% include code-snippet/spreadsheet/angular/clipboard-cs2/src/app.ts %}
8181
{% endhighlight %}
8282

8383
{% highlight ts tabtitle="main.ts" %}

Document-Processing/Excel/Spreadsheet/Angular/comment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ In the below sample, comments are added to a specific cell using cell data bindi
175175

176176
{% tabs %}
177177
{% highlight ts tabtitle="app.ts" %}
178-
{% include code-snippet/spreadsheet/angular/comment-cs1/src/app.component.ts %}
178+
{% include code-snippet/spreadsheet/angular/comment-cs1/src/app.ts %}
179179
{% endhighlight %}
180180

181181
{% highlight ts tabtitle="main.ts" %}

Document-Processing/Excel/Spreadsheet/Angular/context-menu.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ In this demo, Custom Item is added after the Paste item in the context menu.
7070

7171
{% tabs %}
7272
{% highlight ts tabtitle="app.ts" %}
73-
{% include code-snippet/spreadsheet/angular/contextmenu/addContextMenu-cs1/src/app.component.ts %}
73+
{% include code-snippet/spreadsheet/angular/contextmenu/addContextMenu-cs1/src/app.ts %}
7474
{% endhighlight %}
7575

7676
{% highlight ts tabtitle="main.ts" %}
@@ -88,7 +88,7 @@ In this demo, Insert Column item has been removed from the row/column header con
8888

8989
{% tabs %}
9090
{% highlight ts tabtitle="app.ts" %}
91-
{% include code-snippet/spreadsheet/angular/contextmenu/addContextMenu-cs2/src/app.component.ts %}
91+
{% include code-snippet/spreadsheet/angular/contextmenu/addContextMenu-cs2/src/app.ts %}
9292
{% endhighlight %}
9393

9494
{% highlight ts tabtitle="main.ts" %}
@@ -106,7 +106,7 @@ In this demo, Rename item is disabled in the pager context menu.
106106

107107
{% tabs %}
108108
{% highlight ts tabtitle="app.ts" %}
109-
{% include code-snippet/spreadsheet/angular/contextmenu/addContextMenu-cs3/src/app.component.ts %}
109+
{% include code-snippet/spreadsheet/angular/contextmenu/addContextMenu-cs3/src/app.ts %}
110110
{% endhighlight %}
111111

112112
{% highlight ts tabtitle="main.ts" %}

Document-Processing/Excel/Spreadsheet/Angular/data-binding.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Refer to the following code example for local data binding.
2121

2222
{% tabs %}
2323
{% highlight ts tabtitle="app.ts" %}
24-
{% include code-snippet/spreadsheet/angular/local-data-binding-cs1/src/app.component.ts %}
24+
{% include code-snippet/spreadsheet/angular/local-data-binding-cs1/src/app.ts %}
2525
{% endhighlight %}
2626

2727
{% highlight ts tabtitle="main.ts" %}
@@ -43,7 +43,7 @@ The following code example demonstrates how to customize the mapping of column d
4343

4444
{% tabs %}
4545
{% highlight ts tabtitle="app.ts" %}
46-
{% include code-snippet/spreadsheet/angular/field-mapping-cs1/src/app.component.ts %}
46+
{% include code-snippet/spreadsheet/angular/field-mapping-cs1/src/app.ts %}
4747
{% endhighlight %}
4848

4949
{% highlight ts tabtitle="main.ts" %}
@@ -61,7 +61,7 @@ Refer to the following code example for remote data binding.
6161

6262
{% tabs %}
6363
{% highlight ts tabtitle="app.ts" %}
64-
{% include code-snippet/spreadsheet/angular/remote-data-binding-cs1/src/app.component.ts %}
64+
{% include code-snippet/spreadsheet/angular/remote-data-binding-cs1/src/app.ts %}
6565
{% endhighlight %}
6666

6767
{% highlight ts tabtitle="main.ts" %}
@@ -79,7 +79,7 @@ Refer to the following code example for remote data binding.
7979

8080
{% tabs %}
8181
{% highlight ts tabtitle="app.ts" %}
82-
{% include code-snippet/spreadsheet/angular/remote-data-binding-cs2/src/app.component.ts %}
82+
{% include code-snippet/spreadsheet/angular/remote-data-binding-cs2/src/app.ts %}
8383
{% endhighlight %}
8484

8585
{% highlight ts tabtitle="main.ts" %}
@@ -95,7 +95,7 @@ You can use WebApiAdaptor to bind spreadsheet with Web API created using OData e
9595

9696
{% tabs %}
9797
{% highlight ts tabtitle="app.ts" %}
98-
{% include code-snippet/spreadsheet/angular/remote-data-binding-cs3/src/app.component.ts %}
98+
{% include code-snippet/spreadsheet/angular/remote-data-binding-cs3/src/app.ts %}
9999
{% endhighlight %}
100100

101101
{% highlight ts tabtitle="main.ts" %}
@@ -113,7 +113,7 @@ Refer to the following code example for cell data binding.
113113

114114
{% tabs %}
115115
{% highlight ts tabtitle="app.ts" %}
116-
{% include code-snippet/spreadsheet/angular/cell-data-binding-cs1/src/app.component.ts %}
116+
{% include code-snippet/spreadsheet/angular/cell-data-binding-cs1/src/app.ts %}
117117
{% endhighlight %}
118118

119119
{% highlight ts tabtitle="main.ts" %}
@@ -143,7 +143,7 @@ The following table defines the arguments of the `dataSourceChanged` event.
143143
144144
{% tabs %}
145145
{% highlight ts tabtitle="app.ts" %}
146-
{% include code-snippet/spreadsheet/angular/dynamic-data-binding-cs1/src/app.component.ts %}
146+
{% include code-snippet/spreadsheet/angular/dynamic-data-binding-cs1/src/app.ts %}
147147
{% endhighlight %}
148148

149149
{% highlight ts tabtitle="main.ts" %}
@@ -163,7 +163,7 @@ The following code example demonstrates how to dynamically update data using the
163163

164164
{% tabs %}
165165
{% highlight ts tabtitle="app.ts" %}
166-
{% include code-snippet/spreadsheet/angular/dynamic-data-binding-cs2/src/app.component.ts %}
166+
{% include code-snippet/spreadsheet/angular/dynamic-data-binding-cs2/src/app.ts %}
167167
{% endhighlight %}
168168

169169
{% highlight ts tabtitle="main.ts" %}

Document-Processing/Excel/Spreadsheet/Angular/editing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ The following sample shows how to prevent the editing and cell save. Here `E` co
4040

4141
{% tabs %}
4242
{% highlight ts tabtitle="app.ts" %}
43-
{% include code-snippet/spreadsheet/angular/editing-cs1/src/app.component.ts %}
43+
{% include code-snippet/spreadsheet/angular/editing-cs1/src/app.ts %}
4444
{% endhighlight %}
4545

4646
{% highlight ts tabtitle="main.ts" %}

Document-Processing/Excel/Spreadsheet/Angular/filter.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ The following code example shows `filter` functionality in the Spreadsheet contr
3737

3838
{% tabs %}
3939
{% highlight ts tabtitle="app.ts" %}
40-
{% include code-snippet/spreadsheet/angular/filter-cs1/src/app.component.ts %}
40+
{% include code-snippet/spreadsheet/angular/filter-cs1/src/app.ts %}
4141
{% endhighlight %}
4242

4343
{% highlight ts tabtitle="main.ts" %}
@@ -87,7 +87,7 @@ The following code example shows how to get the filtered rows.
8787

8888
{% tabs %}
8989
{% highlight ts tabtitle="app.ts" %}
90-
{% include code-snippet/spreadsheet/angular/filter-cs2/src/app.component.ts %}
90+
{% include code-snippet/spreadsheet/angular/filter-cs2/src/app.ts %}
9191
{% endhighlight %}
9292

9393
{% highlight ts tabtitle="main.ts" %}

Document-Processing/Excel/Spreadsheet/Angular/formatting.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ The following code example shows the number formatting in cell data.
9090

9191
{% tabs %}
9292
{% highlight ts tabtitle="app.ts" %}
93-
{% include code-snippet/spreadsheet/angular/format/number-cs1/src/app.component.ts %}
93+
{% include code-snippet/spreadsheet/angular/format/number-cs1/src/app.ts %}
9494
{% endhighlight %}
9595

9696
{% highlight ts tabtitle="main.ts" %}
@@ -145,7 +145,7 @@ The following code example demonstrates how to configure culture-based formats f
145145

146146
{% tabs %}
147147
{% highlight ts tabtitle="app.ts" %}
148-
{% include code-snippet/spreadsheet/angular/format/globalization-cs1/src/app.component.ts %}
148+
{% include code-snippet/spreadsheet/angular/format/globalization-cs1/src/app.ts %}
149149
{% endhighlight %}
150150

151151
{% highlight ts tabtitle="main.ts" %}
@@ -216,7 +216,7 @@ The following code example shows the style formatting in text and cells of the s
216216

217217
{% tabs %}
218218
{% highlight ts tabtitle="app.ts" %}
219-
{% include code-snippet/spreadsheet/angular/format/number-cs2/src/app.component.ts %}
219+
{% include code-snippet/spreadsheet/angular/format/number-cs2/src/app.ts %}
220220
{% endhighlight %}
221221

222222
{% highlight ts tabtitle="main.ts" %}
@@ -314,7 +314,7 @@ You can clear the defined rules by using one of the following ways,
314314

315315
{% tabs %}
316316
{% highlight ts tabtitle="app.ts" %}
317-
{% include code-snippet/spreadsheet/angular/conditional-formatting-cs1/src/app.component.ts %}
317+
{% include code-snippet/spreadsheet/angular/conditional-formatting-cs1/src/app.ts %}
318318
{% endhighlight %}
319319

320320
{% highlight ts tabtitle="main.ts" %}

Document-Processing/Excel/Spreadsheet/Angular/formulas.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ In the example below, the Spreadsheet component is rendered with the `German cul
3232

3333
{% tabs %}
3434
{% highlight ts tabtitle="app.ts" %}
35-
{% include code-snippet/spreadsheet/angular/formula-cs3/src/app.component.ts %}
35+
{% include code-snippet/spreadsheet/angular/formula-cs3/src/app.ts %}
3636
{% endhighlight %}
3737

3838
{% highlight ts tabtitle="main.ts" %}
@@ -52,7 +52,7 @@ The following code example shows an unsupported formula in the spreadsheet.
5252

5353
{% tabs %}
5454
{% highlight ts tabtitle="app.ts" %}
55-
{% include code-snippet/spreadsheet/angular/formula-cs1/src/app.component.ts %}
55+
{% include code-snippet/spreadsheet/angular/formula-cs1/src/app.ts %}
5656
{% endhighlight %}
5757

5858
{% highlight ts tabtitle="main.ts" %}
@@ -68,7 +68,7 @@ The following code example shows how to use `computeExpression` method in the sp
6868

6969
{% tabs %}
7070
{% highlight ts tabtitle="app.ts" %}
71-
{% include code-snippet/spreadsheet/angular/formula-cs2/src/app.component.ts %}
71+
{% include code-snippet/spreadsheet/angular/formula-cs2/src/app.ts %}
7272
{% endhighlight %}
7373

7474
{% highlight ts tabtitle="main.ts" %}
@@ -95,7 +95,7 @@ The following code example shows the usage of named ranges support.
9595

9696
{% tabs %}
9797
{% highlight ts tabtitle="app.ts" %}
98-
{% include code-snippet/spreadsheet/angular/defined-name-cs1/src/app.component.ts %}
98+
{% include code-snippet/spreadsheet/angular/defined-name-cs1/src/app.ts %}
9999
{% endhighlight %}
100100

101101
{% highlight ts tabtitle="main.ts" %}
@@ -124,7 +124,7 @@ The following code example demonstrates how to set the Automatic calculation mod
124124

125125
{% tabs %}
126126
{% highlight ts tabtitle="app.ts" %}
127-
{% include code-snippet/spreadsheet/angular/calculation-cs1/src/app.component.ts %}
127+
{% include code-snippet/spreadsheet/angular/calculation-cs1/src/app.ts %}
128128
{% endhighlight %}
129129

130130
{% highlight ts tabtitle="main.ts" %}
@@ -147,7 +147,7 @@ The following code example demonstrates how to set the Manual calculation mode i
147147

148148
{% tabs %}
149149
{% highlight ts tabtitle="app.ts" %}
150-
{% include code-snippet/spreadsheet/angular/calculation-cs2/src/app.component.ts %}
150+
{% include code-snippet/spreadsheet/angular/calculation-cs2/src/app.ts %}
151151
{% endhighlight %}
152152

153153
{% highlight ts tabtitle="main.ts" %}

Document-Processing/Excel/Spreadsheet/Angular/freeze-pane.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ In this demo, the frozenColumns is set as ‘2’, and the frozenRows is set as
4646

4747
{% tabs %}
4848
{% highlight ts tabtitle="app.ts" %}
49-
{% include code-snippet/spreadsheet/angular/freezepane-cs1/src/app.component.ts %}
49+
{% include code-snippet/spreadsheet/angular/freezepane-cs1/src/app.ts %}
5050
{% endhighlight %}
5151

5252
{% highlight ts tabtitle="main.ts" %}

0 commit comments

Comments
 (0)