From d4c68a2ce8febdb2c22d103721d0ed7bdc37c3f8 Mon Sep 17 00:00:00 2001 From: Kalaivannan-Ganesan <93248069+Kalaivannan-Ganesan@users.noreply.github.com> Date: Mon, 10 Aug 2026 12:10:12 +0530 Subject: [PATCH] Addressed reports from chart.md to dialog.md --- .../Word-Processor/javascript-es6/chart.md | 14 ++--- .../javascript-es6/clipboard.md | 54 +++++++++---------- .../Word-Processor/javascript-es6/comments.md | 44 +++++++-------- .../javascript-es6/content-control.md | 30 +++++------ .../Word-Processor/javascript-es6/dialog.md | 23 ++++---- 5 files changed, 83 insertions(+), 82 deletions(-) diff --git a/Document-Processing/Word/Word-Processor/javascript-es6/chart.md b/Document-Processing/Word/Word-Processor/javascript-es6/chart.md index c07a2cac37..90d553833e 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es6/chart.md +++ b/Document-Processing/Word/Word-Processor/javascript-es6/chart.md @@ -1,18 +1,18 @@ --- layout: post -title: Chart in JavaScript (ES6) Document Editor Control | Syncfusion -description: Learn here all about Chart in Syncfusion JavaScript (ES6) Document editor control of Syncfusion Essential JS 2 and more. +title: Chart in JavaScript (ES6) DOCX Editor Control | Syncfusion +description: Learn here all about Chart in Syncfusion JavaScript (ES6) Document Editor control of Syncfusion Essential JS 2 and more. platform: document-processing -control: Chart +control: Chart documentation: ug domainurl: ##DomainURL## --- # Chart in JavaScript (ES6) Document Editor Control -[TypeScript DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/javascript-docx-editor) (Document Editor) provides chart preservation support. Using Document Editor, you can see the chart reports from your Word document. +[TypeScript DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/javascript-docx-editor) (Document Editor) provides chart preservation support. Using the Document Editor, you can view charts from your Word document. -The following example shows chart preservation in Document Editor. +The following example shows chart preservation in the Document Editor. {% tabs %} {% highlight ts tabtitle="index.ts" %} @@ -27,7 +27,7 @@ The following example shows chart preservation in Document Editor. ## Supported Chart Types -The following chart types are supported in Document Editor +The following chart types are supported in the Document Editor: * Scatter_Markers * Bubble * Area @@ -50,4 +50,4 @@ The following chart types are supported in Document Editor ## Online Demo -Explore how to preserve charts in Word documents using the JavaScript Document Editor in this live demo [here](https://document.syncfusion.com/demos/docx-editor/javascript/#/material3/document-editor/chart.html). \ No newline at end of file +Explore how to preserve charts in Word documents using the JavaScript DOCX Editor in this live demo [here](https://document.syncfusion.com/demos/docx-editor/javascript/#/material3/document-editor/chart.html). \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/javascript-es6/clipboard.md b/Document-Processing/Word/Word-Processor/javascript-es6/clipboard.md index 3066caa032..64a6da7727 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es6/clipboard.md +++ b/Document-Processing/Word/Word-Processor/javascript-es6/clipboard.md @@ -1,20 +1,20 @@ --- layout: post -title: Clipboard in JavaScript (ES6) Document editor control | Syncfusion -description: Learn here all about Clipboard in Syncfusion JavaScript (ES6) Document editor control of Syncfusion Essential JS 2 and more. +title: Clipboard in JavaScript (ES6) DOCX Editor control | Syncfusion +description: Learn here all about Clipboard in Syncfusion JavaScript (ES6) Document Editor control of Syncfusion Essential JS 2 and more. platform: document-processing -control: Clipboard +control: Clipboard documentation: ug domainurl: ##DomainURL## --- -# Clipboard in JavaScript (ES6) Document editor control +# Clipboard in JavaScript (ES6) Document Editor control -[TypeScript DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/javascript-docx-editor) (Document Editor) takes advantage of system clipboard and allows you to copy or move a portion of the document into it in HTML format, so that it can be pasted in any application that supports clipboard. +[TypeScript DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/javascript-docx-editor) (Document Editor) takes advantage of the system clipboard and allows you to copy or move a portion of the document into it in HTML format, so that it can be pasted in any application that supports the clipboard. ## Copy -Copy a portion of document to system clipboard using built-in context menu of Document Editor. You can also do it programmatically using the following sample code. +Copy a portion of a document to the system clipboard using the built-in context menu of the Document Editor. You can also do it programmatically using the following sample code. ```ts documentEditor.selection.copy(); @@ -22,7 +22,7 @@ documentEditor.selection.copy(); ## Cut -Cut a portion of document to system clipboard using built-in context menu of Document Editor. You can also do it programmatically using the following sample code. +Cut a portion of a document to the system clipboard using the built-in context menu of the Document Editor. You can also do it programmatically using the following sample code. ```ts documentEditor.editor.cut(); @@ -30,15 +30,15 @@ documentEditor.editor.cut(); ## Paste -Due to limitations, you can paste contents from system clipboard in Document Editor only using the ‘CTRL + V’ keyboard shortcut. +Due to limitations, you can paste contents from the system clipboard in the Document Editor only using the 'Ctrl + V' keyboard shortcut. ->Note: Due to browser limitation of getting content from system clipboard, paste using API and context menu option doesn't work. +N> Due to browser limitation of getting content from the system clipboard, paste using the API and context menu option doesn't work. ## Local paste (copy/paste within control) -Document Editor expose API to enable local paste within the control. On enabling this, the following is performed: -* Selected contents will be stored to an internal clipboard in addition to system clipboard. -* Clipboard paste will be overridden, and internally stored data (SFDT data) that has formatted text will be pasted using paste() API in Document editor. +The Document Editor exposes an API to enable local paste within the control. On enabling this, the following is performed: +* Selected contents will be stored to an internal clipboard in addition to the system clipboard. +* Clipboard paste will be overridden, and internally stored data (SFDT data) that has formatted text will be pasted using the paste() API in the Document Editor. Refer to the following sample code. @@ -51,7 +51,7 @@ editor.enableLocalPaste = true; By default, **enableLocalPaste** is false. -When local paste is enabled for a Document Editor instance, you can paste contents programmatically if the internal clipboard has stored data during last copy operation. Refer to the following sample code. +When local paste is enabled for a Document Editor instance, you can paste contents programmatically if the internal clipboard has stored data during the last copy operation. Refer to the following sample code. ```ts documentEditor.editor.paste(); @@ -59,10 +59,11 @@ documentEditor.editor.paste(); ### Paste options in context menu -In Document editor, paste options in context menu will be in disabled state if you were try to copy/paste content from outside of Document editor. It gets enabled when **enableLocalPaste** is true and trying to copy/paste content inside Document editor. +In the Document Editor, paste options in the context menu will be in a disabled state if you try to copy/paste content from outside the Document Editor. They are enabled when **enableLocalPaste** is true and you are trying to copy/paste content inside the Document Editor. ->Note: Due to browser limitation of getting content from system clipboard, paste using API and context menu option doesn't work. Hence, the paste option is disabled in context menu. -Alternatively, you can use the keyboard shortcuts, +N> Due to browser limitation of getting content from the system clipboard, paste using the API and context menu option doesn't work. Hence, the paste option is disabled in the context menu. + +Alternatively, you can use the keyboard shortcuts: * Cut: Ctrl + X * Copy: Ctrl + C @@ -72,25 +73,24 @@ Alternatively, you can use the keyboard shortcuts, |**EnableLocalPaste** |**Paste behavior details**| |--------------------------|----------------------| -|True |Allows to paste content that is copied from the same Document Editor component alone and prevents pasting content from system clipboard. Hence the content copied from outside Document Editor component can’t be pasted.
Browser limitation of pasting from system clipboard using API and context menu options, will be resolved. So, you can copy and paste content within the Document Editor component using API and context menu options too.| -|False|Allows to paste content from system clipboard. Hence the content copied from both the Document Editor component and outside can be pasted.
Browser limitation of pasting from system clipboard using API and context menu options, will remain as a limitation.| +|True |Allows pasting of content that is copied from the same Document Editor component alone and prevents pasting content from the system clipboard. Hence, the content copied from outside the Document Editor component can't be pasted.
Browser limitation of pasting from the system clipboard using the API and context menu options will be resolved. So, you can copy and paste content within the Document Editor component using the API and context menu options too.| +|False|Allows pasting of content from the system clipboard. Hence, the content copied from both the Document Editor component and outside can be pasted.
Browser limitation of pasting from the system clipboard using the API and context menu options will remain a limitation.| -Note: -* Keyboard shortcut for pasting will work properly in both cases. -* Copying content from Document Editor component and pasting outside will work properly in both cases. +N> 1. The keyboard shortcut for pasting will work properly in both cases. +N> 2. Copying content from the Document Editor component and pasting outside will work properly in both cases. ## Paste with formatting -Document Editor provides support to paste the system clipboard data with formatting. To enable clipboard paste with formatting options and copy/paste content from outside of Document editor, set the `enableLocalPaste` property in Document Editor to false and use this .NET Standard library [`Syncfusion.EJ2.WordEditor.AspNet.Core`]() by the web API service implementation. This library helps you to paste the system clipboard data with formatting. +The Document Editor provides support to paste the system clipboard data with formatting. To enable clipboard paste with formatting options and copy/paste content from outside the Document Editor, set the `enableLocalPaste` property in the Document Editor to `false` and use this .NET Standard library [`Syncfusion.EJ2.WordEditor.AspNet.Core`](https://www.nuget.org/packages/Syncfusion.EJ2.WordEditor.AspNet.Core/) through the web API service implementation. This library helps you to paste the system clipboard data with formatting. -Refer this [page](./web-services-overview) for more details. +Refer to this [page](./web-services-overview) for more details. You can paste your system clipboard data in the following ways: -* **Keep Source Formatting** This option retains the character styles and direct formatting applied to the copied text. Direct formatting includes characteristics such as font size, italics, or other formatting that is not included in the paragraph style. -* **Match Destination Formatting** This option discards most of the formatting applied directly to the copied text, but it retains the formatting applied for emphasis, such as bold and italic when it is applied to only a portion of the selection. The text takes on the style characteristics of the paragraph where it is pasted. The text also takes on any direct formatting or character style properties of text that immediately precedes the cursor when the text is pasted. -* **Text Only** This option discards all formatting and non-text elements such as pictures or tables. The text takes on the style characteristics of the paragraph where it is pasted and takes on any direct formatting or character style properties of text that immediately precedes the cursor when the text is pasted. Graphical elements are discarded and tables are converted to a series of paragraphs. +* **Keep Source Formatting:** This option retains the character styles and direct formatting applied to the copied text. Direct formatting includes characteristics such as font size, italics, or other formatting that is not included in the paragraph style. +* **Match Destination Formatting:** This option discards most of the formatting applied directly to the copied text, but it retains the formatting applied for emphasis, such as bold and italic when it is applied to only a portion of the selection. The text takes on the style characteristics of the paragraph where it is pasted. The text also takes on any direct formatting or character style properties of text that immediately precedes the cursor when the text is pasted. +* **Text Only:** This option discards all formatting and non-text elements such as pictures or tables. The text takes on the style characteristics of the paragraph where it is pasted and takes on any direct formatting or character style properties of text that immediately precedes the cursor when the text is pasted. Graphical elements are discarded and tables are converted to a series of paragraphs. -This paste option appear as follows. +These paste options appear as follows. ![Image](images/paste.PNG) diff --git a/Document-Processing/Word/Word-Processor/javascript-es6/comments.md b/Document-Processing/Word/Word-Processor/javascript-es6/comments.md index ff8699d2a8..5fd687e11f 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es6/comments.md +++ b/Document-Processing/Word/Word-Processor/javascript-es6/comments.md @@ -1,29 +1,29 @@ --- layout: post -title: Comments in JavaScript (ES6) Document editor control | Syncfusion -description: Learn here all about Comments in Syncfusion JavaScript (ES6) Document editor control of Syncfusion Essential JS 2 and more. +title: Comments in JavaScript (ES6) DOCX Editor control | Syncfusion +description: Learn here all about Comments in Syncfusion JavaScript (ES6) Document Editor control of Syncfusion Essential JS 2 and more. platform: document-processing -control: Comments +control: Comments documentation: ug domainurl: ##DomainURL## --- -# Comments in JavaScript (ES6) Document editor control +# Comments in JavaScript (ES6) Document Editor control -[TypeScript DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/javascript-docx-editor) (Document Editor) allows you to add comments to documents. You can add, navigate and remove comments in code and from the UI. +[TypeScript DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/javascript-docx-editor) (Document Editor) allows you to add comments to documents. You can add, navigate, and remove comments in code and from the UI. ## Add a new comment -Comments can be inserted to the selected text. +Comments can be inserted into the selected text. ```ts -//Add new commnt in the document. +//Add new comment in the document. documentEditor.editor.insertComment('Test comment'); ``` ## Add a New Comment with Date, Author, and Status -Comments can be inserted into the selected text with a specified date, author, and status [`insertComment`](https://ej2.syncfusion.com/documentation/api/document-editor/editor#insertcomment). +Comments can be inserted into the selected text with a specified date, author, and status using [`insertComment`](https://ej2.syncfusion.com/documentation/api/document-editor/editor#insertcomment). {% highlight ts %} // In this example, a comment with the text "Hello world" @@ -48,7 +48,7 @@ documentEditor.editor.insertComment('Hello world', commentProperties); ## Add a Reply Comment with Date, Author, and Status -Reply comments can be inserted into the parent comment with a specified date, author using [`insertReplyComment`](https://ej2.syncfusion.com/documentation/api/document-editor/editor#insertreplycomment). +Reply comments can be inserted into the parent comment with a specified date, author, and status using [`insertReplyComment`](https://ej2.syncfusion.com/documentation/api/document-editor/editor#insertreplycomment). {% highlight ts %} // In this example, a comment with the text "Hello world" @@ -74,7 +74,7 @@ documentEditor.editor.insertReplyComment(comment.id, 'Hello world', commentPrope ## Get Comments -Document Editor allows to get the comments along with its reply and comment properties using [`getComments`](https://ej2.syncfusion.com/documentation/api/document-editor#getComments). +The Document Editor allows you to get the comments along with their reply and comment properties using [`getComments`](https://ej2.syncfusion.com/documentation/api/document-editor#getComments). {% highlight ts %} //Get Comments in the document along with the properties author, date, status. @@ -96,7 +96,7 @@ documentEditor.selection.navigatePreviousComment(); ## Delete comment -Current comment can be be deleted using [`deleteComment`](https://ej2.syncfusion.com/documentation/api/document-editor/editor#deletecomment). +Current comment can be deleted using [`deleteComment`](https://ej2.syncfusion.com/documentation/api/document-editor/editor#deletecomment). {% highlight ts %} //Delete the current selected comment. @@ -105,14 +105,14 @@ container.documentEditor.editor.deleteComment(); //Get Comments in the document along with the properties author, date, status. let commentinfo: CommentInfo[] = container.documentEditor.getComments(); -//Delete the particular parent comments and all of its reply comments +//Delete the particular parent comment and all of its reply comments container.documentEditor.editor.deleteComment(commentinfo[0].id); //Delete the particular reply comment. container.documentEditor.editor.deleteComment(commentinfo[0].replies[0].id); {% endhighlight %} -## Delete all comment +## Delete all comments All the comments in the document can be deleted using the below code snippet. @@ -121,13 +121,13 @@ All the comments in the document can be deleted using the below code snippet. documentEditor.editor.deleteAllComments(); ``` -## Protect the document in comments only mode +## Protect the document in comments-only mode -Document Editor provides support for protecting the document with `CommentsOnly` protection. In this protection, user allowed to add or edit comments alone in the document. +The Document Editor provides support for protecting the document with `CommentsOnly` protection. In this protection, the user is allowed to add or edit comments alone in the document. -Document editor provides an option to protect and unprotect document using [`enforceProtection`](https://ej2.syncfusion.com/documentation/api/document-editor/editor#enforceprotection) and [`stopProtection`](https://ej2.syncfusion.com/documentation/api/document-editor/editor#stopprotection) API. +The Document Editor provides an option to protect and unprotect the document using [`enforceProtection`](https://ej2.syncfusion.com/documentation/api/document-editor/editor#enforceprotection) and [`stopProtection`](https://ej2.syncfusion.com/documentation/api/document-editor/editor#stopprotection) API. -The following example code illustrates how to enforce and stop protection in Document editor container. +The following example code illustrates how to enforce and stop protection in the Document Editor container. ```ts let container: DocumentEditorContainer = new DocumentEditorContainer({ @@ -146,17 +146,17 @@ container.documentEditor.editor.enforceProtection('123', 'CommentsOnly'); container.documentEditor.editor.stopProtection('123'); ``` -Comment only protection can be enabled in UI by using [Restrict Editing pane](./document-management#restrict-editing-pane) +Comment only protection can be enabled in the UI by using the [Restrict Editing pane](./document-management#restrict-editing-pane) ![Enable comment only protection](images/commentsonly.png) ->Note: In enforce Protection method, first parameter denotes password and second parameter denotes protection type. Possible values of protection type are `NoProtection |ReadOnly |FormFieldsOnly |CommentsOnly`. In stop protection method, parameter denotes the password. +N> In the enforce Protection method, the first parameter denotes the password and the second parameter denotes the protection type. Possible values of protection type are `NoProtection | ReadOnly | FormFieldsOnly | CommentsOnly`. In the stop protection method, the parameter denotes the password. ## Mention Support in comments Mention support displays a list of items that users can select or tag from the suggested list. To use this feature, type the @ character in the comment box and select or tag the user from the suggestion list. -The following example illustrates how to enable mention support in Document Editor +The following example illustrates how to enable mention support in the Document Editor. ```ts let mentionData: any = [ @@ -179,9 +179,9 @@ container.appendTo('#container'); ## Events -DocumentEditor provides [beforeCommentAction](https://ej2.syncfusion.com/documentation/api/document-editor-container#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/documentation/api/document-editor/commentActionEventArgs) object as an argument, which allows access to information about the comment. +The Document Editor provides [beforeCommentAction](https://ej2.syncfusion.com/documentation/api/document-editor-container#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/documentation/api/document-editor/commentActionEventArgs) object as an argument, which allows access to information about the comment. -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: +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: ```ts diff --git a/Document-Processing/Word/Word-Processor/javascript-es6/content-control.md b/Document-Processing/Word/Word-Processor/javascript-es6/content-control.md index 8b8c74a10f..623762cf14 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es6/content-control.md +++ b/Document-Processing/Word/Word-Processor/javascript-es6/content-control.md @@ -1,18 +1,18 @@ --- layout: post -title: Content control in JavaScript (ES6) Document editor control | Syncfusion -description: Learn here all about Content control in Syncfusion JavaScript (ES6) Document editor control of Syncfusion Essential JS 2 and more. +title: Content Control in JavaScript (ES6) DOCX Editor control | Syncfusion +description: Learn here all about Content Control in Syncfusion JavaScript (ES6) Document Editor control of Syncfusion Essential JS 2 and more. platform: document-processing -control: Content control +control: Content Control documentation: ug domainurl: ##DomainURL## --- -# Content control in JavaScript (ES6) Document editor control +# Content Control in JavaScript (ES6) Document Editor control -[TypeScript DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/javascript-docx-editor) (Document Editor) provides support for inserting, editing content controls +[TypeScript DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/javascript-docx-editor) (Document Editor) provides support for inserting and editing content controls. -Content controls can be categorized based on its occurrence in a document as follows, +Content controls can be categorized based on their occurrence in a document as follows: InlineContentControl: Among inline content inside, as a child of a paragraph. BlockContentControl: Among paragraphs and tables, as a child of a Body, HeaderFooter. @@ -22,13 +22,13 @@ BlockContentControl: Among paragraphs and tables, as a child of a Body, HeaderFo * Rich Text * Plain Text * Check Box -* Date picker +* Date Picker * Drop-Down List and Combo Box * Picture ## Insert content control -Content control can be inserted using [`insertContentControl`](https://ej2.syncfusion.com/documentation/api/document-editor/editor#insertContentControl) method in editor module. +A content control can be inserted using the [`insertContentControl`](https://ej2.syncfusion.com/documentation/api/document-editor/editor#insertContentControl) method in the editor module. {% highlight ts %} //Insert Rich Text Content Control @@ -44,7 +44,7 @@ container.documentEditor.editor.insertContentControl('Text', 'Hello World'); //Insert CheckBox Content Control container.documentEditor.editor.insertContentControl('CheckBox'); -//Insert CheckBox Content Control with mention checked state +//Insert CheckBox Content Control with the checked state container.documentEditor.editor.insertContentControl('CheckBox', true); //Insert ComboBox Content Control @@ -54,7 +54,7 @@ container.documentEditor.editor.insertContentControl('ComboBox', 'One', ['One', //Insert Date Content Control container.documentEditor.editor.insertContentControl('Date'); -//Insert Date Content Control +//Insert Date Content Control with a date value container.documentEditor.editor.insertContentControl('Date', '01/01/2024'); //Insert DropDownList Content Control @@ -70,7 +70,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/documentation/api/document-editor#importContentControlData) and import it using [`importContentControlData`](https://ej2.syncfusion.com/documentation/api/document-editor#importContentControlData) +Content control properties can be set using the [`ContentControlInfo`](https://ej2.syncfusion.com/documentation/api/document-editor#importContentControlData) and imported using [`importContentControlData`](https://ej2.syncfusion.com/documentation/api/document-editor#importContentControlData). {% highlight ts %} let data: ContentControlInfo[] = []; @@ -81,15 +81,15 @@ container.documentEditor.importContentControlData(data); ## Export content control properties -Content control properties can be exported using the [`exportContentControlData`](https://ej2.syncfusion.com/documentation/api/document-editor#exportContentControlData) +Content control properties can be exported using the [`exportContentControlData`](https://ej2.syncfusion.com/documentation/api/document-editor#exportContentControlData). {% highlight ts %} let contentControlInfos: ContentControlInfo[] = container.documentEditor.exportContentControlData(); {% endhighlight %} -## Reset content control +## Reset content control properties -Content control properties can be reset using the [`resetContentControlData`](https://ej2.syncfusion.com/documentation/api/document-editor#resetcontentcontroldata) +Content control properties can be reset using the [`resetContentControlData`](https://ej2.syncfusion.com/documentation/api/document-editor#resetcontentcontroldata). {% highlight ts %} @@ -99,4 +99,4 @@ data.push(contentControlData); container.documentEditor.resetContentControlData(data); {% endhighlight %} ->Note: Content control with custom XML mapping of file type WordML is converted as normal Rich Text Content Control to provide lossless round-tripping upon saving. +N> A content control with custom XML mapping of file type WordML is converted as a normal Rich Text Content Control to provide lossless round-tripping upon saving. diff --git a/Document-Processing/Word/Word-Processor/javascript-es6/dialog.md b/Document-Processing/Word/Word-Processor/javascript-es6/dialog.md index 91e7281349..e52d7d8532 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es6/dialog.md +++ b/Document-Processing/Word/Word-Processor/javascript-es6/dialog.md @@ -1,20 +1,20 @@ --- layout: post -title: Dialog in JavaScript (ES6) Document editor control | Syncfusion -description: Learn here all about Dialog in Syncfusion JavaScript (ES6) Document editor control of Syncfusion Essential JS 2 and more. +title: Dialog in JavaScript (ES6) DOCX Editor control | Syncfusion +description: Learn here all about Dialog in Syncfusion JavaScript (ES6) Document Editor control of Syncfusion Essential JS 2 and more. platform: document-processing -control: Dialog +control: Dialog documentation: ug domainurl: ##DomainURL## --- -# Dialog in JavaScript (ES6) Document editor control +# Dialog in JavaScript (ES6) Document Editor control -[TypeScript DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/javascript-docx-editor) (Document Editor) provides dialog support to major operations such as insert or edit hyperlink, formatting text, paragraph, style, list and table properties. +[TypeScript DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/javascript-docx-editor) (Document Editor) provides dialog support to major operations such as insert or edit hyperlink, formatting text, paragraph, style, list, and table properties. ## Font Dialog -Font dialog allows you to modify all text properties for selected contents at once such as bold, italic, underline, font size, font color, strikethrough, subscript and superscript. +Font dialog allows you to modify all text properties for the selected contents at once such as bold, italic, underline, font size, font color, strikethrough, subscript, and superscript. Refer to the following example. @@ -33,7 +33,7 @@ Refer to the following example. ## Paragraph dialog -This dialog allows modifying the paragraph formatting for selection at once such as text alignment, indentation, and spacing. +This dialog allows modifying the paragraph formatting for the selection at once such as text alignment, indentation, and spacing. To open this dialog, refer to the following example. @@ -52,7 +52,7 @@ To open this dialog, refer to the following example. ## Table dialog -This dialog allows creating and inserting a table at cursor position by specifying the required number of rows and columns. +This dialog allows creating and inserting a table at the cursor position by specifying the required number of rows and columns. To open this dialog, refer to the following example. @@ -75,8 +75,9 @@ This dialog allows you to perform the following operations: * View all bookmarks. * Navigate to a bookmark. -* Create a bookmark at current selection. +* Create a bookmark at the current selection. * Delete an existing bookmark. + To open this dialog, refer to the following example. @@ -94,7 +95,7 @@ To open this dialog, refer to the following example. ## Hyperlink dialog -This dialog allows editing or inserting a hyperlink at cursor position. +This dialog allows editing or inserting a hyperlink at the cursor position. To open this dialog, refer to the following example. @@ -113,7 +114,7 @@ To open this dialog, refer to the following example. ## Table of contents dialog -This dialog allows creating and inserting table of contents at cursor position. If the table of contents already exists at cursor position, you can customize its properties. +This dialog allows creating and inserting a table of contents at the cursor position. If the table of contents already exists at the cursor position, you can customize its properties. To open this dialog, refer to the following example.