Skip to content

Commit b904e33

Browse files
author
GiriSF4292
committed
979841: Invalid API url changes
1 parent 35d397e commit b904e33

File tree

52 files changed

+107
-107
lines changed

Some content is hidden

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

52 files changed

+107
-107
lines changed

Document-Processing/Word/Word-Processor/angular/bookmark.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ this.container.documentEditor.editor.insertBookmark("Bookmark1");
2727

2828
## Select Bookmark
2929

30-
You can select the bookmark in the document using [`selectBookmark`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/selection#selectbookmark/) method by providing Bookmark name to select as shown in the following code snippet.
30+
You can select the bookmark in the document using [`selectBookmark`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/selection/#selectbookmark) method by providing Bookmark name to select as shown in the following code snippet.
3131

3232
```csharp
3333
container.documentEditor.selection.selectBookmark("Bookmark1", true);
@@ -44,7 +44,7 @@ this.container.documentEditor.editor.deleteBookmark("Bookmark1");
4444

4545
## Get Bookmark from document
4646

47-
You can get all the bookmarks in the document using [`getBookmarks`](https://ej2.syncfusion.com/angular/documentation/api/document-editor#getbookmarks/) method as shown in the following code snippet.
47+
You can get all the bookmarks in the document using [`getBookmarks`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#getbookmarks/) method as shown in the following code snippet.
4848

4949
```csharp
5050
this.container.documentEditor.selection.getBookmarks(false);
@@ -54,7 +54,7 @@ this.container.documentEditor.selection.getBookmarks(false);
5454
5555
## Get Bookmark from selection
5656

57-
You can get bookmarks in current selection in the document using [`getBookmarks`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/selection#getbookmarks/) method as shown in the following code snippet.
57+
You can get bookmarks in current selection in the document using [`getBookmarks`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/selection/#getbookmarks/) method as shown in the following code snippet.
5858

5959
```csharp
6060
this.container.documentEditor.selection.getBookmarks(false);

Document-Processing/Word/Word-Processor/angular/comments.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ this.documentEditor.editor.insertReplyComment(comment.id, 'Hello world', comment
7272

7373
## Get Comments
7474

75-
Document Editor allows to get the comments along with its reply and comment properties using [`getComments`](https://ej2.syncfusion.com/angular/documentation/api/document-editor#getcomments).
75+
Document Editor allows to get the comments along with its reply and comment properties using [`getComments`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#getcomments).
7676

7777
```typescript
7878
//Get Comments in the document along with the properties author, date, status.
@@ -210,7 +210,7 @@ export class AppComponent implements OnInit {
210210
211211
## Events
212212

213-
DocumentEditor provides [beforeCommentAction](https://ej2.syncfusion.com/angular/documentation/api/document-editor#beforecommentaction) event, which is triggered on comment actions like Post, edit, reply, resolve and reopen. This event provides an opportunity to perform custom logic on comment actions like Post, edit, reply, resolve and reopen. The event handler receives the [CommentActionEventArgs](https://ej2.syncfusion.com/angular/documentation/api/document-editor/commentActionEventArgs) object as an argument, which allows access to information about the comment.
213+
DocumentEditor provides [beforeCommentAction](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#beforecommentaction) event, which is triggered on comment actions like Post, edit, reply, resolve and reopen. This event provides an opportunity to perform custom logic on comment actions like Post, edit, reply, resolve and reopen. The event handler receives the [CommentActionEventArgs](https://ej2.syncfusion.com/angular/documentation/api/document-editor/commentActionEventArgs) object as an argument, which allows access to information about the comment.
214214

215215
To demonstrate a specific use case, let’s consider an example where we want to restrict the delete functionality based on the author’s name. The following code snippet illustrates how to allow only the author of a comment to delete:
216216

Document-Processing/Word/Word-Processor/angular/content-control.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ this.container.documentEditor.editor.insertContentControl('Picture', 'data:image
7070

7171
## Import content control properties
7272

73-
Content control properties can be set using the [`ContentControlInfo`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/contentControlInfo/) and import it using [`importContentControlData`](https://ej2.syncfusion.com/angular/documentation/api/document-editor#importcontentcontroldata)
73+
Content control properties can be set using the [`ContentControlInfo`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/contentControlInfo/) and import it using [`importContentControlData`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#importcontentcontroldata)
7474

7575
{% highlight ts %}
7676
let data: ContentControlInfo[] = [];
@@ -81,15 +81,15 @@ this.container.documentEditor.importContentControlData(data);
8181

8282
## Export content control properties
8383

84-
Content control properties can be exported using the [`exportContentControlData`](https://ej2.syncfusion.com/angular/documentation/api/document-editor#exportcontentcontroldata)
84+
Content control properties can be exported using the [`exportContentControlData`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#exportcontentcontroldata)
8585

8686
{% highlight ts %}
8787
let contentControlInfos: ContentControlInfo[] = this.container.documentEditor.exportContentControlData();
8888
{% endhighlight %}
8989

9090
## Reset content control
9191

92-
Content control properties can be reset using the [`resetcontentcontroldata`](https://ej2.syncfusion.com/angular/documentation/api/document-editor#resetcontentcontroldata)
92+
Content control properties can be reset using the [`resetcontentcontroldata`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#resetcontentcontroldata)
9393

9494
{% highlight ts %}
9595
let data: ContentControlInfo[] = [];

Document-Processing/Word/Word-Processor/angular/fields.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ The following type of fields are automatically updated in Document Editor.
4747

4848
## Get field info
4949

50-
You can get field code and field result of the current selected field by using [`getFieldInfo`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/selection#getfieldinfo) method in the [`Selection`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/selection/) module.
50+
You can get field code and field result of the current selected field by using [`getFieldInfo`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/selection/#getfieldinfo) method in the [`Selection`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/selection/) module.
5151

5252
```typescript
5353
//Gets the field information of the selected field.

Document-Processing/Word/Word-Processor/angular/find-and-replace.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ this.documenteditor.search.findAll('Some text', 'None');
6666
6767
## Search results
6868

69-
The [`SearchResults`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/searchResults/) class provides information about the search results after a search operation is completed that can be identified using the [`searchResultsChange`](https://ej2.syncfusion.com/angular/documentation/api/document-editor#searchresultschange/) event. This will expose the following APIs:
69+
The [`SearchResults`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/searchResults/) class provides information about the search results after a search operation is completed that can be identified using the [`searchResultsChange`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#searchresultschange/) event. This will expose the following APIs:
7070

7171
|API Name|Type |Description|
7272
|---|---|---|
@@ -115,7 +115,7 @@ this.container.documentEditor.search.searchResults.clear();
115115

116116
## SearchResultsChange event
117117

118-
[`DocumentEditor`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/) exposes the [`searchResultsChange`](https://ej2.syncfusion.com/angular/documentation/api/document-editor#searchresultschange/) event that will be triggered whenever search results are changed. Consider the following scenarios:
118+
[`DocumentEditor`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/) exposes the [`searchResultsChange`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#searchresultschange/) event that will be triggered whenever search results are changed. Consider the following scenarios:
119119

120120
* A search operation is completed with some results.
121121
* The results are replaced with some other text, since it will be cleared automatically.

Document-Processing/Word/Word-Processor/angular/form-fields.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ this.documentEditor.editor.insertFormField('DropDown');
2929

3030
## Get form field names
3131

32-
All the form fields names form current document can be retrieved using [`getFormFieldNames()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor#getformfieldnames).
32+
All the form fields names form current document can be retrieved using [`getFormFieldNames()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#getformfieldnames).
3333

3434
```typescript
3535
let formFieldsNames: string[] = this.documentEditor.getFormFieldNames();
3636
```
3737

3838
## Get form field properties
3939

40-
Form field properties can be retrieved using [`getFormFieldInfo()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor#getformfieldinfo).
40+
Form field properties can be retrieved using [`getFormFieldInfo()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#getformfieldinfo).
4141

4242
```typescript
4343
//Text form field
@@ -50,7 +50,7 @@ let dropdownfieldInfo: DropDownFormFieldInfo = this.documentEditor.getFormFieldI
5050

5151
## Set form field properties
5252

53-
Form field properties can be modified using [`setFormFieldInfo`](https://ej2.syncfusion.com/angular/documentation/api/document-editor#setformfieldinfo).
53+
Form field properties can be modified using [`setFormFieldInfo`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#setformfieldinfo).
5454

5555
```typescript
5656
// Set text form field properties
@@ -78,7 +78,7 @@ this.documentEditor.setFormFieldInfo('Drop1',dropdownfieldInfo);
7878
7979
## Form Field Shading
8080

81-
You can customize form field shading at the application level using the [`formFieldSettings`](https://ej2.syncfusion.com/angular/documentation/api/document-editor#formFieldSettings) property.
81+
You can customize form field shading at the application level using the [`formFieldSettings`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#formFieldSettings) property.
8282

8383
The example code below demonstrates how to set a custom shading color and how to disable shading (by default, shading is enabled).
8484

@@ -94,15 +94,15 @@ N> This customization only affects the application UI and will not be preserved
9494

9595
## Export form field data
9696

97-
Data of the all the Form fields in the document can be exported using [`exportFormData`](https://ej2.syncfusion.com/angular/documentation/api/document-editor#exportformdata).
97+
Data of the all the Form fields in the document can be exported using [`exportFormData`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#exportformdata).
9898

9999
```typescript
100100
let formFieldDate: FormFieldData[] = this.documentEditor.exportFormData();
101101
```
102102

103103
## Import form field data
104104

105-
Form fields can be prefilled with data using [`importFormData`](https://ej2.syncfusion.com/angular/documentation/api/document-editor#importformdata).
105+
Form fields can be prefilled with data using [`importFormData`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#importformdata).
106106

107107
```typescript
108108
let textformField: FormFieldData = {fieldName: 'Text1', value: 'Hello World'};
@@ -114,7 +114,7 @@ this.documentEditor.importFormData([textformField,checkformField,dropdownformFie
114114

115115
## Reset form fields
116116

117-
Reset all the form fields in current document to default value using [`resetFormFields`](https://ej2.syncfusion.com/angular/documentation/api/document-editor#resetformfields).
117+
Reset all the form fields in current document to default value using [`resetFormFields`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#resetformfields).
118118

119119
```typescript
120120
this.documentEditor.resetFormFields();

Document-Processing/Word/Word-Processor/angular/header-footer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ this.documentEditor.selection.goToFooter();
4141

4242
Link to previous is enabled by default when document has more than one section. If you're using different headers and footers such as different first page or different odd and even pages, they can't be linked together because they're all separate.
4343

44-
Before setting or getting the link to previous value, use the ['goToHeader'](https://ej2.syncfusion.com/angular/documentation/api/document-editor/selection#gotoheader) or ['goToFooter'](https://ej2.syncfusion.com/angular/documentation/api/document-editor/selection#gotofooter) API to move the current selection to the header or footer region.
44+
Before setting or getting the link to previous value, use the ['goToHeader'](https://ej2.syncfusion.com/angular/documentation/api/document-editor/selection/#gotoheader) or ['goToFooter'](https://ej2.syncfusion.com/angular/documentation/api/document-editor/selection/#gotofooter) API to move the current selection to the header or footer region.
4545

4646
You can get or set the default header footer link to previous value of a section at cursor position by using the following sample code.
4747

Document-Processing/Word/Word-Processor/angular/how-to/add-save-button-in-toolbar.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ domainurl: ##DomainURL##
1212

1313
## To add a save button to the existing toolbar in DocumentEditorContainer
1414

15-
DocumentEditorContainer allows you to add a new button to the existing items in a toolbar using [`CustomToolbarItemModel`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/customToolbarItemModel/) and with existing items in [`toolbarItems`](https://ej2.syncfusion.com/angular/documentation/api/document-editor-container#toolbaritems) property. Newly added item click action can be defined in [`toolbarClick`](https://ej2.syncfusion.com/angular/documentation/api/toolbar/clickEventArgs/).
15+
DocumentEditorContainer allows you to add a new button to the existing items in a toolbar using [`CustomToolbarItemModel`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/customToolbarItemModel/) and with existing items in [`toolbarItems`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/-container#toolbaritems) property. Newly added item click action can be defined in [`toolbarClick`](https://ej2.syncfusion.com/angular/documentation/api/toolbar/clickEventArgs/).
1616

1717
```typescript
1818
import { Component, OnInit, ViewChild } from '@angular/core';

Document-Processing/Word/Word-Processor/angular/how-to/auto-save-document-in-document-editor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ In this article, we are going to see how to auto save the document in AWS S3. Yo
1414

1515
The following example illustrates how to auto save the document in AWS S3.
1616

17-
* In the client-side, using content change event, we can automatically save the edited content in regular intervals of time. Based on `contentChanged` boolean, the document send as DOCX format to server-side using [`saveAsBlob`](https://ej2.syncfusion.com/angular/documentation/api/document-editor#saveasblob) method.
17+
* In the client-side, using content change event, we can automatically save the edited content in regular intervals of time. Based on `contentChanged` boolean, the document send as DOCX format to server-side using [`saveAsBlob`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#saveasblob) method.
1818

1919
```typescript
2020
/**

Document-Processing/Word/Word-Processor/angular/how-to/auto-save-document.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ In this article, we are going to see how to auto save the document to server. Yo
1414

1515
The following example illustrates how to auto save the document in server.
1616

17-
* In the client-side, using content change event, we can automatically save the edited content in regular intervals of time. Based on `contentChanged` boolean, the document send as DOCX format to server-side using [`saveAsBlob`](https://ej2.syncfusion.com/angular/documentation/api/document-editor#saveasblob) method.
17+
* In the client-side, using content change event, we can automatically save the edited content in regular intervals of time. Based on `contentChanged` boolean, the document send as DOCX format to server-side using [`saveAsBlob`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/#saveasblob) method.
1818

1919
```typescript
2020
import { Component, OnInit, ViewChild } from '@angular/core';

0 commit comments

Comments
 (0)