diff --git a/Document-Processing/Word/Word-Processor/angular/how-to/show-hide-spinner.md b/Document-Processing/Word/Word-Processor/angular/how-to/show-hide-spinner.md index dcdf88c624..5d4d8a85d4 100644 --- a/Document-Processing/Word/Word-Processor/angular/how-to/show-hide-spinner.md +++ b/Document-Processing/Word/Word-Processor/angular/how-to/show-hide-spinner.md @@ -1,24 +1,24 @@ --- layout: post -title: Show hide spinner in Angular Document editor component | Syncfusion -description: Learn here all about Show hide spinner in Syncfusion Angular Document editor component of Syncfusion Essential JS 2 and more. +title: Show hide spinner in Angular DOCX Editor component | Syncfusion +description: Learn here all about Show hide spinner in Syncfusion Angular Document Editor component of Syncfusion Essential JS 2 and more. platform: document-processing control: Show hide spinner documentation: ug domainurl: ##DomainURL## --- -# Show hide spinner in Angular Document editor component +# Show hide spinner in Angular Document Editor component -Using [`spinner`](https://ej2.syncfusion.com/documentation/spinner/getting-started#create-the-spinner-globally) component, you can show/hide spinner while opening document in [Angular DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/angular-docx-editor). +Using the [`spinner`](https://ej2.syncfusion.com/documentation/spinner/getting-started#create-the-spinner-globally) component, you can show or hide a spinner while opening a document in the [Angular DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/angular-docx-editor) (Document Editor). -Example code snippet to show/hide spinner +Example code snippet to show or hide a spinner: ```typescript // showSpinner() will make the spinner visible showSpinner(document.getElementById('container')); -// hideSpinner() method used hide spinner +// hideSpinner() method is used to hide the spinner hideSpinner(document.getElementById('container')); ``` @@ -39,4 +39,4 @@ Refer to the following example. > The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/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: In above example, we have used setInterval to hide spinner, just for demo purpose. +N> In the above example, we have used setInterval to hide the spinner, just for demo purposes. diff --git a/Document-Processing/Word/Word-Processor/angular/image.md b/Document-Processing/Word/Word-Processor/angular/image.md index 8ffe5e0095..36577a8ffc 100644 --- a/Document-Processing/Word/Word-Processor/angular/image.md +++ b/Document-Processing/Word/Word-Processor/angular/image.md @@ -1,16 +1,16 @@ --- layout: post -title: Image in Angular Document editor component | Syncfusion -description: Learn here all about Image in Syncfusion Angular Document editor component of Syncfusion Essential JS 2 and more. +title: Image in Angular DOCX Editor component | Syncfusion +description: Learn here all about Image in Syncfusion Angular Document Editor component of Syncfusion Essential JS 2 and more. platform: document-processing control: Image documentation: ug domainurl: ##DomainURL## --- -# Image in Angular Document editor component +# Image in Angular Document Editor component -[Angular DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/angular-docx-editor) (Document Editor) supports common raster format images like PNG, BMP, JPEG, SVG and GIF. You can insert an image file or online image in the document using the [`insertImage()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor/#insertimage/) method. Refer to the following sample code. +[Angular DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/angular-docx-editor) (Document Editor) supports common raster image formats such as PNG, BMP, JPEG, SVG, and GIF. You can insert an image file or an online image in the document using the [`insertImage()`](https://ej2.syncfusion.com/angular/documentation/api/document-editor/editor#insertimage) method. Refer to the following sample code. {% tabs %} {% highlight ts tabtitle="app.component.ts" %} @@ -24,26 +24,26 @@ domainurl: ##DomainURL## {% previewsample "/document-processing/samples/document-editor/angular/link-cs1" %} -Image files will be internally converted to base64 string. Whereas, online images are preserved as URL. +Image files are internally converted to base64 strings, whereas online images are preserved as URLs. ->Note: EMF and WMF images can't be inserted, but these types of images will be preserved in Document Editor when using ASP.NET MVC Web API. +N>: EMF and WMF images can't be inserted, but these types of images will be preserved in Document Editor when using ASP.NET MVC Web API. ## Image resizing -Document Editor provides built-in image resizer that can be injected into your application based on the requirements. This allows you to resize the image by dragging the resizing points using mouse or touch interactions. This resizer appears as follows. +Document Editor provides a built-in image resizer that can be injected into your application based on the requirements. This allows you to resize the image by dragging the resizing points using a mouse or touch interactions. This resizer appears as follows. ![Image](images/image.png) ## Changing size -Document Editor expose API to get or set the size of the selected image. Refer to the following sample code. +Document Editor exposes an API to get or set the size of the selected image. Refer to the following sample code. ```typescript this.documentEditor.selection.imageFormat.width = 800; this.documentEditor.selection.imageFormat.height = 800; ``` ->Note: Images are stored and processed(read/write) as base64 string in DocumentEditor. The online image URL is preserved as a URL in Document Editor upon saving. +N>: Images are stored and processed (read/write) as base64 string in DocumentEditor. The online image URL is preserved as a URL in DocumentEditor upon saving. ## Text wrapping style @@ -51,7 +51,7 @@ Text wrapping refers to how images fit with surrounding text in a document. Plea ## Positioning the image -DocumentEditor preserves the position properties of the image and displays the image based on position properties. It does not support modifying the position properties. Whereas the image will be automatically moved along with text edited if it is positioned relative to the line or paragraph. +DocumentEditor preserves the position properties of the image and displays the image based on these position properties. It does not support modifying the position properties. The image will be automatically moved along with the edited text if it is positioned relative to the line or paragraph. ## See Also diff --git a/Document-Processing/Word/Word-Processor/angular/import.md b/Document-Processing/Word/Word-Processor/angular/import.md index 305d7fd933..39aac2d90a 100644 --- a/Document-Processing/Word/Word-Processor/angular/import.md +++ b/Document-Processing/Word/Word-Processor/angular/import.md @@ -1,16 +1,16 @@ --- layout: post -title: Import in Angular Document editor component | Syncfusion -description: Learn here all about Import in Syncfusion Angular Document editor component of Syncfusion Essential JS 2 and more. +title: Import in Angular DOCX Editor component | Syncfusion +description: Learn here all about Import in Syncfusion Angular Document Editor component of Syncfusion Essential JS 2 and more. platform: document-processing control: Import documentation: ug domainurl: ##DomainURL## --- -# Import in Angular Document editor component +# Import in Angular Document Editor component -In [Angular DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/angular-docx-editor) (Document Editor), the documents are stored in its own format called **Syncfusion Document Text (SFDT)**. +In [Angular DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/angular-docx-editor) (Document Editor), the documents are stored in Document Editor's own format called **Syncfusion Document Text (SFDT)**. The following example shows how to open SFDT data in Document Editor. @@ -28,7 +28,7 @@ The following example shows how to open SFDT data in Document Editor. ## Import document from local machine -The following example shows how to import document from local machine. +The following example shows how to import a document from the local machine. {% tabs %} {% highlight ts tabtitle="app.component.ts" %} @@ -42,13 +42,13 @@ The following example shows how to import document from local machine. {% previewsample "/document-processing/samples/document-editor/angular/import-cs3" %} -## Convert word documents into SFDT +## Convert Word documents into SFDT -You can convert word documents into SFDT format using the .NET Standard library [`Syncfusion.EJ2.WordEditor.AspNet.Core`]() by the web API service implementation. This library helps you to convert word documents (.dotx,.docx,.docm,.dot,.doc), rich text format documents (.rtf), and text documents (.txt) into SFDT format. +You can convert Word documents into SFDT format using the .NET Standard library [`Syncfusion.EJ2.WordEditor.AspNet.Core`]() by the web API service implementation. This library helps you to convert Word documents (.dotx,.docx,.docm,.dot,.doc), rich text format documents (.rtf), and text documents (.txt) into SFDT format. ->Note: The Syncfusion® Document Editor component's document pagination (page-by-page display) can't be guaranteed for all the Word documents to match the pagination of Microsoft Word application. For more information about [why the document pagination (page-by-page display) differs from Microsoft Word](./import#why-the-document-pagination-differs-from-microsoft-word) +N>: The Syncfusion® Document Editor component's document pagination (page-by-page display) can't be guaranteed for all the Word documents to match the pagination of Microsoft Word application. For more information about [why the document pagination (page-by-page display) differs from Microsoft Word](./import#why-the-document-pagination-differs-from-microsoft-word). -Please refer the following example for converting word documents into SFDT. +Please refer to the following example for converting Word documents into SFDT. ```typescript import { Component, ViewEncapsulation, ViewChild } from '@angular/core'; @@ -90,7 +90,7 @@ export class AppComponent { ajax.onreadystatechange = () => { if (ajax.readyState === 4) { if (ajax.status === 200 || ajax.status === 304) { - // open SFDT text in document editor + // open SFDT text in Document Editor this.documentEditor.open(ajax.responseText); } } @@ -102,7 +102,7 @@ export class AppComponent { } ``` -Here’s how to handle the server-side action for converting word document in to SFDT. +Here's how to handle the server-side action for converting a Word document into SFDT. ```csharp [AcceptVerbs("Post")] @@ -149,36 +149,36 @@ Here’s how to handle the server-side action for converting word document in to } ``` -To know about server-side action, please refer this [page](./web-services-overview). +To know about server-side action, please refer to this [page](./web-services-overview). ## Compatibility with Microsoft Word -Syncfusion® Document Editor is a minimal viable Word document viewer/editor product for web applications. As most compatible Word editor, the product vision is adding valuable feature sets of Microsoft Word, and not to cover 100% feature sets of Microsoft Word desktop application. You can even see the feature sets difference between Microsoft Word desktop and their Word online application. So kindly don't misunderstand this component as a complete replacement for Microsoft Word desktop application and expect 100% feature sets of it. +Syncfusion® Document Editor is a minimal viable Word document viewer/editor product for web applications. As the most compatible Word editor, the product vision is adding valuable feature sets of Microsoft Word, and not to cover 100% feature sets of Microsoft Word desktop application. You can even see the feature sets difference between Microsoft Word desktop and their Word online application. So kindly don't misunderstand this component as a complete replacement for Microsoft Word desktop application and expect 100% feature sets of it. -### How Syncfusion® accepts the feature request for Document Editor +### How Syncfusion® accepts the feature requests for Document Editor -Syncfusion accepts new feature request as valid based on feature value and technological feasibility, then plan to implement unsupported features incrementally in future releases in a phase-by-phase manner. +Syncfusion accepts new feature requests as valid based on feature value and technological feasibility, then plans to implement unsupported features incrementally in future releases in a phase-by-phase manner. -### How to report the problems in Document Editor +### How to report problems in Document Editor -You can report the problems with displaying, or editing Word documents in Document Editor component through [`feedback portal`](https://www.syncfusion.com/feedback). Kindly share the Word document for replicating the problem easily in minimal time. If you have confidential data, you can replace it and attach the document. +You can report problems with displaying or editing Word documents in Document Editor component through [`feedback portal`](https://www.syncfusion.com/feedback). Kindly share the Word document for replicating the problem easily in minimal time. If you have confidential data, you can replace it and attach the document. ### Why the document pagination differs from Microsoft Word -For your understanding about the Word document structure and the workflow of Word viewer/editor components, the Word document is a flow document in which content will not be preserved page by page; instead, the content will be preserved sequentially like a HTML file. Only the Word viewer/editor paginates the content of the Word document page by page dynamically, when opened for viewing or editing and this page-wise position information will not be preserved in the document level (it is Word file format specification standard). Syncfusion® Document Editor component also does the same. +For your understanding about the Word document structure and the workflow of Word viewer/editor components, the Word document is a flow document in which content will not be preserved page by page; instead, the content will be preserved sequentially like an HTML file. Only the Word viewer/editor paginates the content of the Word document page by page dynamically, when opened for viewing or editing and this page-wise position information will not be preserved at the document level (it is Word file format specification standard). Syncfusion® Document Editor component also does the same.   -At present there is a known technical limitation related to slight difference in text size calculated using HTML element based text measuring approach. Even though the text size is calculated with correct font and font size values, the difference lies; it is as low as 0.00XX to 0. XXXX values compared to that of Microsoft Word application’s display. Hence the document pagination (page-by-page display) can't be guaranteed for all the Word documents to match the pagination of Microsoft Word application. +At present there is a known technical limitation related to slight difference in text size calculated using HTML element based text measuring approach. Even though the text size is calculated with correct font and font size values, the difference lies; it is as low as 0.00XX to 0.XXXX values compared to that of Microsoft Word application’s display. Hence the document pagination (page-by-page display) can't be guaranteed for all the Word documents to match the pagination of Microsoft Word application. -### How Syncfusion® address the document pagination difference compared to Microsoft Word +### How Syncfusion® addresses the document pagination difference compared to Microsoft Word -The following table illustrates the reasons for pagination (page-by-page display) difference compared to Microsoft Word in your documents and how Syncfusion® address it. +The following table illustrates the reasons for pagination (page-by-page display) difference compared to Microsoft Word in your documents and how Syncfusion® addresses it. | Root causes | How is it solved? | |-----------------|-------------| -|Any mistake (wrong behavior handled) in lay outing the supported elements and formatting  |Customer can report to Syncfusion® support and track the status through bug report link.  Syncfusion® fixes the bugs in next possible weekly patch release and service pack or main releases. | -|Font missing in deployment environment|Customer can either report to Syncfusion® support and get suggestion or solve it on their own by installing the missing fonts in their deployment environment.| -|Any unsupported elements or formatting present in your document |Customer can report to Syncfusion® support and track the status through feature request link.   Syncfusion® implements unsupported features incrementally in future releases based on feature importance, customer interest, efforts involved, and technological feasibility. Also, suggests alternate approach for possible cases.| -|Technical limitation related to framework   For example, there is a known case with slight fractional difference in text size measured using HTML and Microsoft Word’s display.|Customer can report to Syncfusion® support and track the status through feature request link.  Syncfusion® does research about alternate approaches to overcome the technical limitation/behaviors and process it same as a feature. >Note: Here the challenge is, time schedule for implementation varies based on the alternate solution and its reliability.| +|Any mistake (wrong behavior handled) in laying out the supported elements and formatting  |Customer can report to Syncfusion® support and track the status through bug report link.  Syncfusion® fixes the bugs in the next possible weekly patch release and service pack or main releases. | +|Font missing in deployment environment|Customer can either report to Syncfusion® support and get a suggestion or solve it on their own by installing the missing fonts in their deployment environment.| +|Any unsupported elements or formatting present in your document |Customer can report to Syncfusion® support and track the status through feature request link.   Syncfusion® implements unsupported features incrementally in future releases based on feature importance, customer interest, efforts involved, and technological feasibility. Also, suggests an alternate approach for possible cases.| +|Technical limitation related to framework   For example, there is a known case with a slight fractional difference in text size measured using HTML and Microsoft Word's display.|Customer can report to Syncfusion® support and track the status through feature request link.  Syncfusion® does research about alternate approaches to overcome the technical limitation/behaviors and process it same as a feature. N>: Here the challenge is, time schedule for implementation varies based on the alternate solution and its reliability.| ## See Also diff --git a/Document-Processing/Word/Word-Processor/angular/keyboard-shortcut.md b/Document-Processing/Word/Word-Processor/angular/keyboard-shortcut.md index 5c9cf1eb0a..3ee291268b 100644 --- a/Document-Processing/Word/Word-Processor/angular/keyboard-shortcut.md +++ b/Document-Processing/Word/Word-Processor/angular/keyboard-shortcut.md @@ -1,14 +1,14 @@ --- layout: post -title: Keyboard shortcut in Angular Document editor component | Syncfusion -description: Learn here all about Keyboard shortcut in Syncfusion Angular Document editor component of Syncfusion Essential JS 2 and more. +title: Keyboard shortcut in Angular DOCX Editor component | Syncfusion +description: Learn here all about Keyboard shortcut in Syncfusion Angular Document Editor component of Syncfusion Essential JS 2 and more. platform: document-processing control: Keyboard shortcut documentation: ug domainurl: ##DomainURL## --- -# Keyboard shortcut in Angular Document editor component +# Keyboard shortcut in Angular Document Editor component ## Text formatting @@ -20,9 +20,9 @@ The following table lists the default keyboard shortcuts in [Angular DOCX Editor |Ctrl + I | Toggles the italic property of selected text.| |Ctrl + U | Toggles the underline property of selected text.| |Ctrl + + | Toggles the subscript formatting of selected text.| -|Ctrl + Shift + + | Toggles the superscript formatting of selected contents.| -| Ctrl + } | Increases the actual font size of selected text by one point.| -| Ctrl + { | Decreases the actual font size of selected text by one point.| +|Ctrl + Shift + + | Toggles the superscript formatting of selected text.| +| Ctrl + } | Increases the font size of selected text by one point.| +| Ctrl + { | Decreases the font size of selected text by one point.| ## Paragraph formatting @@ -30,17 +30,17 @@ The following table lists the default keyboard shortcuts for formatting the para | Key combination | Description | |-----------------|-------------| -|Ctrl + E | Selected paragraphs are center aligned.| +|Ctrl + E | Selected paragraphs are center-aligned.| |Ctrl + J |Selected paragraphs are justified.| -|Ctrl + L | Selected paragraphs are left aligned.| -|Ctrl + R | Selected paragraphs are right aligned.| -|Ctrl + 1 | Single line spacing is applied for selected paragraphs.| -|Ctrl + 5 | 1.5 line spacing is applied for selected paragraphs.| -|Ctrl + 2 | Double spacing is applied for selected paragraphs.| -|Ctrl + 0 | No spacing is applied before the selected paragraphs.| +|Ctrl + L | Selected paragraphs are left-aligned.| +|Ctrl + R | Selected paragraphs are right-aligned.| +|Ctrl + 1 | Applies single line spacing to the selected paragraphs.| +|Ctrl + 5 | Applies 1.5 line spacing to the selected paragraphs.| +|Ctrl + 2 | Applies double line spacing to the selected paragraphs.| +|Ctrl + 0 | Applies no spacing before the selected paragraphs.| |Ctrl + M | Increases the left indent of selected paragraphs by a factor of 36 points.| |Ctrl + Shift + M | Decreases the left indent of selected paragraphs by a factor of 36 points.| -|Ctrl + * | Show/Hide the hidden characters like spaces, tab, paragraph marks, and breaks.| +|Ctrl + * | Shows or hides hidden characters such as spaces, tabs, paragraph marks, and breaks.| ## Clipboard @@ -80,7 +80,7 @@ The following table lists the default keyboard shortcuts for formatting the para |Shift + Down arrow| Extends selection one line downward.| |Shift + Up arrow| Extends selection one line upward.| |Shift + Home| Extends selection to the start of a line.| -|Shift + End| Extends Selection to the end of a line.| +|Shift + End| Extends selection to the end of a line.| |Ctrl + A| Extends selection to the entire document.| |Ctrl + Shift + Left arrow| Extends selection one word to the left.| |Ctrl + Shift + Right arrow| Extends selection one word to the right.| @@ -96,11 +96,11 @@ The following table lists the default keyboard shortcuts for formatting the para |Ctrl + F| Opens options pane.| |Ctrl + H| Opens replace tab in options pane.| -## Create, Save and Print document +## Create, Save, and Print document |Key Combination|Description| |---------------|-----------| -|Ctrl + N| Opens empty document.| +|Ctrl + N| Opens an empty document.| |Ctrl + S| Saves the document in SFDT format.| |Ctrl + P| Prints the document.| @@ -108,8 +108,8 @@ The following table lists the default keyboard shortcuts for formatting the para |Key Combination|Description| |---------------|-----------| -|Backspace | Deletes one character to the left.| -|Delete | Deletes one character to the right.| +|Backspace| Deletes one character to the left.| +|Delete| Deletes one character to the right.| |Ctrl + Z | Undo last performed action.| |Ctrl + Y | Redo last undo action.| diff --git a/Document-Processing/Word/Word-Processor/angular/link.md b/Document-Processing/Word/Word-Processor/angular/link.md index 794c89164f..bd7568b088 100644 --- a/Document-Processing/Word/Word-Processor/angular/link.md +++ b/Document-Processing/Word/Word-Processor/angular/link.md @@ -1,24 +1,24 @@ --- layout: post -title: Link in Angular Document editor component | Syncfusion -description: Learn here all about Link in Syncfusion Angular Document editor component of Syncfusion Essential JS 2 and more. +title: Link in Angular DOCX Editor component | Syncfusion +description: Learn here all about Link in Syncfusion Angular Document Editor component of Syncfusion Essential JS 2 and more. platform: document-processing control: Link documentation: ug domainurl: ##DomainURL## --- -# Link in Angular Document editor component +# Link in Angular Document Editor component -[Angular DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/angular-docx-editor) (Document Editor) supports hyperlink field. You can link a part of the document content to Internet or file location, mail address, or any text within the document. +[Angular DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/angular-docx-editor) (Document Editor) supports the hyperlink field. You can link a part of the document content to the Internet, a file location, a mail address, or any text within the document. ## Navigate a hyperlink -Document Editor triggers `requestNavigate` event whenever user clicks Ctrl key or tap a hyperlink within the document. This event provides necessary details about link type, navigation URL, and local URL (if any) as arguments, and allows you to easily customize the hyperlink navigation functionality. +Document Editor triggers the `requestNavigate` event whenever the user presses the Ctrl key or taps a hyperlink within the document. This event provides the necessary details about link type, navigation URL, and local URL (if any) as arguments, and allows you to easily customize the hyperlink navigation functionality. ### Add the requestNavigate event for DocumentEditor -The following example illustrates how to add requestNavigate event for DocumentEditor. +The following example illustrates how to add the `requestNavigate` event for the DocumentEditor. {% tabs %} {% highlight ts tabtitle="app.component.ts" %} @@ -34,7 +34,7 @@ The following example illustrates how to add requestNavigate event for DocumentE ### Add the requestNavigate event for DocumentEditorContainer component -The following example illustrates how to add requestNavigate event for DocumentEditorContainer component. +The following example illustrates how to add the `requestNavigate` event for the DocumentEditorContainer component. ```typescript import { Component, ViewEncapsulation, ViewChild } from '@angular/core'; @@ -72,7 +72,7 @@ export class AppComponent { > The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/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. -If the selection is in hyperlink, trigger this event by calling `navigateHyperlink` method of `Selection` instance. Refer to the following example. +If the selection is in a hyperlink, trigger this event by calling the `navigateHyperlink` method of the `Selection` instance. Refer to the following example. ```typescript this.documentEditor.selection.navigateHyperlink(); @@ -80,7 +80,7 @@ this.documentEditor.selection.navigateHyperlink(); ## Copy link -Document Editor copies link text of a hyperlink field to the clipboard if the selection is in hyperlink. Refer to the following example. +Document Editor copies the link text of a hyperlink field to the clipboard if the selection is in a hyperlink. Refer to the following example. ```typescript this.documentEditor.selection.copyHyperlink(); @@ -112,19 +112,19 @@ Refer to the following example. ## Customize screen tip -You can customize the screen tip text for the hyperlink by using below sample code. +You can customize the screen tip text for the hyperlink by using the sample code below. ```typescript this.documentEditor.editor.insertHyperlink('https://www.google.com', 'Google', '<>'); ``` -Screen tip text can be modified through UI by using the [Hyperlink dialog](./dialog#hyperlink-dialog) +Screen tip text can be modified through the UI by using the [Hyperlink dialog](./dialog#hyperlink-dialog). ![Add or modify the screen tip text for hyperlinks in a Word document.](images/screentip.png) ## Remove hyperlink -To remove link from hyperlink in the document, press Backspace key at the end of a hyperlink. By removing the link, it will be converted as plain text. You can use ‘removeHyperlink’ method of ‘Editor’ instance if the selection is in hyperlink. Refer to the following example. +To remove the link from a hyperlink in the document, press the Backspace key at the end of a hyperlink. By removing the link, it will be converted as plain text. You can use the `removeHyperlink` method of the `Editor` instance if the selection is in a hyperlink. Refer to the following example. ```typescript this.documentEditor.editor.removeHyperlink(); @@ -146,15 +146,15 @@ Document Editor provides dialog support to insert or edit a hyperlink. Refer to {% previewsample "/document-processing/samples/document-editor/angular/link-cs4" %} -You can use the following keyboard shortcut to open the hyperlink dialog if the selection is in hyperlink. +You can use the following keyboard shortcut to open the hyperlink dialog if the selection is in a hyperlink. | Key Combination | Description | |-----------------|-------------| -|Ctrl + K | Open hyperlink dialog that allows you to create or edit hyperlink| +|Ctrl + K | Open hyperlink dialog that allows you to create or edit a hyperlink| ## Online Demo -Explore how to insert and manage hyperlinks in Word documents using the Angular Document Editor in this live demo [here](https://document.syncfusion.com/demos/docx-editor/angular/#/tailwind3/document-editor/links-bookmarks). +Explore how to insert and manage hyperlinks in Word documents using the Angular Document Editor in this [live demo](https://document.syncfusion.com/demos/docx-editor/angular/#/tailwind3/document-editor/links-bookmarks). ## See Also