diff --git a/Document-Processing/Word/Word-Processor/angular/document-editor/getting-started.md b/Document-Processing/Word/Word-Processor/angular/document-editor/getting-started.md index eaefbd666..1c8ad8f4b 100644 --- a/Document-Processing/Word/Word-Processor/angular/document-editor/getting-started.md +++ b/Document-Processing/Word/Word-Processor/angular/document-editor/getting-started.md @@ -177,7 +177,7 @@ DocumentEditorContainer output will be displayed as follows. > The Web API hosted link `https://services.syncfusion.com/angular/production/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. ->Note: If you see a license banner when running your application, it means that you need to obtain a license key and register it within the application in order to use Syncfusion components. You can find more information on how to obtain and register a license key on our [Licensing overview](../licensing/overview/) page. +>Note: If you see a license banner when running your application, it means that you need to obtain a license key and register it within the application in order to use Syncfusion components. You can find more information on how to obtain and register a license key on our [Licensing overview](https://ej2.syncfusion.com/angular/documentation/licensing/overview) page. ### DocumentEditor Component @@ -213,7 +213,7 @@ export class AppComponent implements OnInit { #### Run the DocumentEditor application -The quickstart project is configured to compile and run the application in a browser. Use the following command to run the application. +The quick-start project is configured to compile and run the application in a browser. Use the following command to run the application. ```javascript ng serve --open diff --git a/Document-Processing/Word/Word-Processor/javascript-es5/document-editor/bookmark.md b/Document-Processing/Word/Word-Processor/javascript-es5/document-editor/bookmark.md index 5664415ad..7f9986fa4 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es5/document-editor/bookmark.md +++ b/Document-Processing/Word/Word-Processor/javascript-es5/document-editor/bookmark.md @@ -20,7 +20,7 @@ Document Editor provides built-in dialog to add, delete, and navigate bookmarks ## Add bookmark -Using [`insertBookmark`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/editor/#insertbookmark) method, Bookmark can be added to the selected text. +Using [`insertBookmark`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/editor#insertbookmark) method, Bookmark can be added to the selected text. ```c# container.documentEditor.editor.insertBookmark("Bookmark1"); @@ -28,7 +28,7 @@ container.documentEditor.editor.insertBookmark("Bookmark1"); ## Select Bookmark -You can select the bookmark in the document using [`selectBookmark`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/selection/#selectbookmark) method by providing Bookmark name to select as shown in the following code snippet. +You can select the bookmark in the document using [`selectBookmark`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/selection#selectbookmark) method by providing Bookmark name to select as shown in the following code snippet. ```c# container.documentEditor.selection.selectBookmark("Bookmark1", true); @@ -38,7 +38,7 @@ container.documentEditor.selection.selectBookmark("Bookmark1", true); ## Delete Bookmark -You can delete bookmark in the document using [`deleteBookmark`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/editor/#deletebookmark) method as shown in the following code snippet. +You can delete bookmark in the document using [`deleteBookmark`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/editor#deletebookmark) method as shown in the following code snippet. ```c# container.documentEditor.editor.deleteBookmark("Bookmark1"); @@ -46,7 +46,7 @@ container.documentEditor.editor.deleteBookmark("Bookmark1"); ## Get Bookmark from document -You can get all the bookmarks in the document using [`getBookmarks`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/#getbookmarks) method as shown in the following code snippet. +You can get all the bookmarks in the document using [`getBookmarks`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor#getbookmarks) method as shown in the following code snippet. ```c# container.documentEditor.getBookmarks(false); @@ -56,7 +56,7 @@ container.documentEditor.getBookmarks(false); ## Get Bookmark from selection -You can get bookmarks in current selection in the document using [`getBookmarks`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/selection/#getbookmarks) method as shown in the following code snippet. +You can get bookmarks in current selection in the document using [`getBookmarks`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/selection#getbookmarks) method as shown in the following code snippet. ```c# container.documentEditor.selection.getBookmarks(false); diff --git a/Document-Processing/Word/Word-Processor/javascript-es5/document-editor/content-control.md b/Document-Processing/Word/Word-Processor/javascript-es5/document-editor/content-control.md index 4496eacde..9a96dc276 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es5/document-editor/content-control.md +++ b/Document-Processing/Word/Word-Processor/javascript-es5/document-editor/content-control.md @@ -29,7 +29,7 @@ BlockContentControl: Among paragraphs and tables, as a child of a Body, HeaderFo ## Insert content control -Content control can be inserted using [`insertContentControl`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/editor/#insertContentControl) method in editor module. +Content control can be inserted using [`insertContentControl`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/editor#insertContentControl) method in editor module. {% highlight js %} //Insert Rich Text Content Control @@ -71,7 +71,7 @@ container.documentEditor.editor.insertContentControl('Picture', 'data:image/png; ## Import content control properties -Content control properties can be set using the [`ContentControlInfo`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/#importContentControlData) and import it using [`importContentControlData`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/#importContentControlData) +Content control properties can be set using the [`ContentControlInfo`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor#importContentControlData) and import it using [`importContentControlData`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor#importContentControlData) {% highlight js %} var data = []; @@ -82,7 +82,7 @@ container.documentEditor.importContentControlData(data); ## Export content control properties -Content control properties can be exported using the [`exportContentControlData`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/#exportContentControlData) +Content control properties can be exported using the [`exportContentControlData`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor#exportContentControlData) {% highlight js %} var contentControlInfos = container.documentEditor.exportContentControlData(); @@ -90,7 +90,7 @@ var contentControlInfos = container.documentEditor.exportContentControlData(); ## Reset content control -Content control properties can be reset using the [`resetcontentcontroldata`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/#resetcontentcontroldata) +Content control properties can be reset using the [`resetcontentcontroldata`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor#resetcontentcontroldata) {% highlight js %} var data = []; diff --git a/Document-Processing/Word/Word-Processor/javascript-es5/document-editor/how-to/resize-document-editor.md b/Document-Processing/Word/Word-Processor/javascript-es5/document-editor/how-to/resize-document-editor.md index 2a8f84d47..9ed54086f 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es5/document-editor/how-to/resize-document-editor.md +++ b/Document-Processing/Word/Word-Processor/javascript-es5/document-editor/how-to/resize-document-editor.md @@ -15,7 +15,7 @@ In this article, we are going to see how to change height and width of Document ## Change height of Document Editor -DocumentEditorContainer initially render with default height. You can change height of documenteditor using [`height`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor-container/documentEditorContainerModel/#height) property, the value which is in pixel. +DocumentEditorContainer initially render with default height. You can change height of documenteditor using [`height`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor-container/documentEditorContainerModel#height) property, the value which is in pixel. The following example code illustrates how to change height of Document Editor. diff --git a/Document-Processing/Word/Word-Processor/javascript-es5/document-editor/print.md b/Document-Processing/Word/Word-Processor/javascript-es5/document-editor/print.md index c44406a80..2d1f79920 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es5/document-editor/print.md +++ b/Document-Processing/Word/Word-Processor/javascript-es5/document-editor/print.md @@ -41,7 +41,7 @@ Refer to the following example for creating a document and print it. ## Improve print quality -Document editor provides an option to improve the print quality using [`printDevicePixelRatio`](https://ej2.syncfusion.com/documentation/api/document-editor/documentEditorSettingsModel/#printdevicepixelratio) in Document editor settings. Document editor using canvas approach to render content. Then, canvas are converted to image and it process for print. Using printDevicePixelRatio API, you can increase the image quality based on your requirement. +Document editor provides an option to improve the print quality using [`printDevicePixelRatio`](https://ej2.syncfusion.com/documentation/api/document-editor/documentEditorSettingsModel#printdevicepixelratio) in Document editor settings. Document editor using canvas approach to render content. Then, canvas are converted to image and it process for print. Using printDevicePixelRatio API, you can increase the image quality based on your requirement. The following example code illustrates how to improve the print quality in Document editor container.