From 9482e2f9335336732eb31ed8be6fa7550868050d Mon Sep 17 00:00:00 2001 From: Vellaisamy Auvudaiappan Date: Mon, 10 Aug 2026 19:43:51 +0530 Subject: [PATCH 1/6] 1045868-changed table,text-format,text-wrapping-style,track-changes,unsupported-features,view files --- .../Word/Word-Processor/asp-net-mvc/table.md | 52 ++++++++-------- .../Word-Processor/asp-net-mvc/text-format.md | 62 +++++++++---------- .../asp-net-mvc/text-wrapping-style.md | 24 +++---- .../asp-net-mvc/track-changes.md | 46 +++++++------- .../asp-net-mvc/unsupported-features.md | 16 ++--- .../Word/Word-Processor/asp-net-mvc/view.md | 30 ++++----- 6 files changed, 113 insertions(+), 117 deletions(-) diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/table.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/table.md index 05dd6b2408..b991972ea7 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/table.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/table.md @@ -1,6 +1,6 @@ --- layout: post -title: Table in ASP.NET MVC Document Editor Component | Syncfusion +title: Table in ASP.NET MVC DOCX Editor Component | Syncfusion description: Learn here all about table in Syncfusion ASP.NET MVC Document Editor component of Syncfusion Essential JS 2 and more. platform: document-processing control: Table @@ -10,11 +10,11 @@ documentation: ug # Tables -Tables are an efficient way to present information. Document editor can display and edit the tables. You can select and edit tables through keyboard, mouse, or touch interactions. Document editor exposes a rich set of APIs to perform these operations programmatically. +Tables are an efficient way to present information. The Document Editor can display and edit tables. You can select and edit tables through keyboard, mouse, or touch interactions. It exposes a rich set of APIs to perform these operations programmatically. ## Create a table -You can create and insert a table at cursor position by specifying the required number of rows and columns. +You can create and insert a table at the cursor position by specifying the required number of rows and columns. ```typescript documenteditor.editor.insertTable(3,3); @@ -42,11 +42,11 @@ You can use the `maximumRows` property to set the maximum number of rows allowed ``` -When the maximum row limit is reached, an alert will appear, as follow +When the maximum row limit is reached, an alert will appear, as follows. -![Row Limit Alert](images/Row_Limit_Alert.PNG) +![Row Limit Alert](images/Row_Limit_Alert.PNG) ->Note: The maximum value of Row is 32767, as per Microsoft Word application and you can set any value less than or equal to 32767 to this property. +N> The maximum number of rows is 32767, as per Microsoft Word application, and you can set any value less than or equal to 32767 to this property. ## Set the maximum number of Columns when inserting a table @@ -72,15 +72,15 @@ Refer to the following sample code. ``` -When the maximum column limit is reached, an alert will appear, as follow +When the maximum column limit is reached, an alert will appear, as follows. -![Column Limit Alert](images/Column_Limit_Alert.PNG) +![Column Limit Alert](images/Column_Limit_Alert.PNG) ->Note: The maximum value of Column is 63, as per Microsoft Word application and you can set any value less than or equal to 63 to this property. +N> The maximum number of columns is 63, as per Microsoft Word application, and you can set any value less than or equal to 63 to this property. ## Insert rows -You can add a row (or several rows) above or below the row at cursor position by using the `insertRow` method. This method accepts the following parameters: +You can add a row (or several rows) above or below the row at the cursor position by using the `insertRow` method. This method accepts the following parameters: | Parameter | Type | Description | |----------|------|-------------| @@ -91,16 +91,16 @@ Refer to the following sample code. ```typescript //Inserts a row below the row at cursor position -documentedior.editor.insertRow(); +documenteditor.editor.insertRow(); //Inserts a row above the row at cursor position -documentedior.editor.insertRow(false); +documenteditor.editor.insertRow(true); //Inserts three rows below the row at cursor position -documentedior.editor.insertRow(true, 3) +documenteditor.editor.insertRow(false, 3); ``` ## Insert columns -You can add a column (or several columns) to the left or right of the column at cursor position by using the `insertColumn` method. This method accepts the following parameters: +You can add a column (or several columns) to the left or right of the column at the cursor position by using the `insertColumn` method. This method accepts the following parameters: | Parameter | Type | Description | |----------|------|-------------| @@ -110,11 +110,11 @@ You can add a column (or several columns) to the left or right of the column at ```typescript //Insert a column to the right of the column at cursor position. -documentedior.editor.insertColumn(); +documenteditor.editor.insertColumn(); //Insert a column to the left of the column at cursor position. -documentedior.editor.insertColumn(false); +documenteditor.editor.insertColumn(true); //Insert two columns to the left of the column at cursor position. -documentedior.editor.insertColumn(false, 2); +documenteditor.editor.insertColumn(true, 2); ``` ### Select an entire table @@ -133,7 +133,7 @@ You can select the entire row at cursor position by using the following sample c documenteditor.selection.selectRow(); ``` -If current selection spans across cells of different rows, all these rows will be selected. +If the current selection spans across cells of different rows, all these rows will be selected. ### Select column @@ -143,7 +143,7 @@ You can select the entire column at cursor position by using the following sampl documenteditor.selection.selectColumn(); ``` -If current selection spans across cells of different columns, all these columns will be selected. +If the current selection spans across cells of different columns, all these columns will be selected. ### Select cell @@ -155,7 +155,7 @@ documenteditor.selection.selectCell(); ## Delete table -Document editor allows to delete the entire table. You can use the `deleteTable()` method of editor instance, if selection is in table. +The Document Editor allows you to delete the entire table. You can use the `deleteTable()` method of the editor instance if the selection is in a table. ```typescript documenteditor.editor.deleteTable(); @@ -163,7 +163,7 @@ documenteditor.editor.deleteTable(); ## Delete row -Document editor allows to delete the selected number of rows. You can use the `deleteRow()` method of editor instance to delete the selected number of rows, if selection is in table. +The Document Editor allows you to delete the selected number of rows. You can use the `deleteRow()` method of the editor instance to delete the selected number of rows, if the selection is in a table. ```typescript documenteditor.editor.deleteRow(); @@ -171,7 +171,7 @@ documenteditor.editor.deleteRow(); ## Delete column -Document editor allows to delete the selected number of columns. You can use the `deleteColumn ()` method of editor instance to delete the selected number of columns, if selection is in table. +The Document Editor allows you to delete the selected number of columns. You can use the `deleteColumn()` method of the editor instance to delete the selected number of columns, if the selection is in a table. ```typescript documenteditor.editor.deleteColumn(); @@ -179,15 +179,15 @@ documenteditor.editor.deleteColumn(); ## Merge cells -You can merge cells vertically, horizontally, or combination of both to a single cell. To vertically merge the cells, the columns within selection should be even in left and right directions. To horizontally merge the cells, the rows within selection should be even in top and bottom direction. +You can merge cells vertically, horizontally, or a combination of both to a single cell. To vertically merge the cells, the columns within the selection should be equal in the left and right directions. To horizontally merge the cells, the rows within the selection should be equal in the top and bottom directions. ```typescript -documenteditor.editor.mergeCells() +documenteditor.editor.mergeCells(); ``` ## Positioning the table -Document Editor preserves the position properties of the table and displays the table based on position properties. It does not support modifying the position properties. Whereas the table will be automatically moved along with text edited if it is positioned relative to the paragraph. +Document Editor preserves the position properties of the table and displays the table based on the position properties. It does not support modifying the position properties. The table will be automatically moved along with the text while editing if it is positioned relative to the paragraph. ## How to work with tables @@ -205,7 +205,7 @@ The following sample demonstrates how to delete the table row or columns, merge -## See Also +## See also * [Feature modules](./feature-module) * [Insert table dialog](./dialog#table-dialog) diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/text-format.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/text-format.md index 05aa74bd55..0b16370cf3 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/text-format.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/text-format.md @@ -1,6 +1,6 @@ --- layout: post -title: Text Format in ASP.NET MVC Document Editor Component | Syncfusion +title: Text Format in ASP.NET MVC DOCX Editor Component | Syncfusion description: Learn here all about text format in Syncfusion ASP.NET MVC Document Editor component of Syncfusion Essential JS 2 and more. platform: document-processing control: Text Format @@ -10,11 +10,11 @@ documentation: ug # Working with Text Formatting -Document editor supports several formatting options for text like bold, italic, font color, highlight color, and more. This section describes how to modify the formatting for selected text in detail. +Document Editor supports several formatting options for text like bold, italic, font color, highlight color, and more. This section describes how to modify the formatting for selected text in detail. ## Bold -The bold formatting for selected text can be get or set by using the following sample code. +The bold formatting for selected text can be retrieved or set by using the following sample code. ```typescript //Gets the value for bold formatting of selected text. @@ -23,7 +23,7 @@ let bold : boolean = documenteditor.selection.characterFormat.bold; documenteditor.selection.characterFormat.bold = true; ``` -You can toggle the bold formatting based on existing value at selection. +You can toggle the bold formatting based on the existing value at the selection. ```typescript documenteditor.editor.toggleBold(); @@ -31,13 +31,13 @@ documenteditor.editor.toggleBold(); ## Italic -The Italic formatting for selected text can be get or set by using the following sample code. +The Italic formatting for selected text can be retrieved or set by using the following sample code. ```typescript -documenteditor.selection.characterFormat.italic= true|false; +documenteditor.selection.characterFormat.italic = true | false; ``` -You can toggle the Italic formatting based on existing value at selection. +You can toggle the italic formatting based on the existing value at the selection. ```typescript documenteditor.editor.toggleItalic(); @@ -45,13 +45,13 @@ documenteditor.editor.toggleItalic(); ## Underline property -The underline style for selected text can be get or set by using the following sample code. +The underline style for selected text can be retrieved or set by using the following sample code. ```typescript -documenteditor.selection.characterFormat.underline='Single' | 'None'; +documenteditor.selection.characterFormat.underline = 'Single' | 'None'; ``` -You can toggle the underline style of selected text based on existing value at selection by specifying a value. +You can toggle the underline style of selected text based on the existing value at the selection by specifying a value. ```typescript documenteditor.editor.toggleUnderline('Single'); @@ -59,13 +59,13 @@ documenteditor.editor.toggleUnderline('Single'); ## Strikethrough property -The strikethrough style for selected text can be get or set by using the following sample code. +The strikethrough style for selected text can be retrieved or set by using the following sample code. ```typescript -documenteditor.selection.characterFormat.strikethrough='Single' | 'Normal'; +documenteditor.selection.characterFormat.strikethrough = 'Single' | 'Normal'; ``` -You can toggle the strikethrough style of selected text based on existing value at selection by specifying a value. +You can toggle the strikethrough style of selected text based on the existing value at the selection by specifying a value. ```typescript documenteditor.editor.toggleStrikethrough(); @@ -115,48 +115,48 @@ documenteditor.editor.changeCase('Uppercase'|'Lowercase'|'SentenceCase'|'ToggleC ## Size -The size of selected text can be get or set using the following code. +The size of selected text can be retrieved or set using the following code. ```typescript -documenteditor.selection.characterFormat.fontSize= 32; +documenteditor.selection.characterFormat.fontSize = 32; ``` ## Color -### Change Font Color by UI Option +### Change font color by UI option -In the Document Editor, the Text Properties pane features two icons for managing text color within the user interface (UI): +In the Document Editor, the Text Properties pane contains two icons for managing text color within the user interface (UI): * **Colored Box:** This icon visually represents the **current color** applied to the selected text. -* **Text (A) Icon:** Clicking this icon allows users **to modify the color** of the selected text by choosing a new color from the available options. +* **Text (A) Icon:** Clicking this icon allows users to **change the** color of the selected text **using the color picker**. -This Font Color option appear as follows. +This Font Color option appears as follows. ![Font Color](images/fontColor.PNG) -### Change Font Color by Code +### Change font color by code -The color of selected text can be get or set using the following code. +The color of selected text can be retrieved or set using the following code. ```typescript -documenteditor.selection.characterFormat.fontColor= 'Pink'; -documenteditor.selection.characterFormat.fontColor= '#FFC0CB'; +documenteditor.selection.characterFormat.fontColor = 'Pink'; +documenteditor.selection.characterFormat.fontColor = '#FFC0CB'; ``` ## Font -The font style of selected text can be get or set using the following sample code. +The font style of selected text can be retrieved or set using the following sample code. ```typescript -documenteditor.selection.characterFormat.fontFamily= 'Arial'; +documenteditor.selection.characterFormat.fontFamily = 'Arial'; ``` ## Highlight color -The highlight color of the selected text can be get or set using the following sample code. +The highlight color of the selected text can be retrieved or set using the following sample code. ```typescript -documenteditor.selection.characterFormat.highlightColor= 'Pink'; +documenteditor.selection.characterFormat.highlightColor = 'Pink'; ``` ## Bidirectional @@ -168,7 +168,7 @@ The bidi property controls whether selected text is displayed as right-to-left ( var bidi = documenteditor.selection.characterFormat.bidi; // Set Bidi for selected text -documenteditor.selection.characterFormat.bidi= true; +documenteditor.selection.characterFormat.bidi = true; ``` ## Toolbar with options for text formatting @@ -183,11 +183,11 @@ documenteditor.selection.characterFormat.bidi= true; {% endhighlight %} {% endtabs %} -## Online Demo +## Online demo -Explore how to apply text formatting in Word documents using the ASP.NET MVC Document Editor in this live demo [here](https://document.syncfusion.com/demos/docx-editor/asp-net-mvc/documenteditor/characterformatting#/tailwind3). +Explore how to apply text formatting in Word documents using the ASP.NET MVC Document Editor in this [live demo](https://document.syncfusion.com/demos/docx-editor/asp-net-mvc/documenteditor/characterformatting#/tailwind3). -## See Also +## See also * [Feature modules](./feature-module) * [Font dialog](./dialog#font-dialog) diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/text-wrapping-style.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/text-wrapping-style.md index 9a1ddce9e9..7ba796d676 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/text-wrapping-style.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/text-wrapping-style.md @@ -1,6 +1,6 @@ --- layout: post -title: Text Wrapping Style in ASP.NET MVC Document Editor Component +title: Text Wrapping Style in ASP.NET MVC DOCX Editor Component description: Learn here all about text wrapping style in Syncfusion ASP.NET MVC Document Editor component of Syncfusion Essential JS 2 and more. platform: document-processing control: Text Wrapping Style @@ -8,27 +8,27 @@ documentation: ug --- -# Text Wrapping Style in DocumentEditor +# Text Wrapping Style in Document Editor -Text wrapping refers to how images and shapes are fit with surrounding text in a document. Currently, DocumentEditor has only preservation support for image and textbox shape with below wrapping styles. +Text wrapping refers to how images and shapes are fitted with surrounding text in a document. Currently, Document Editor has only preservation support for image and text box shapes with the following wrapping styles. -## In-Line with Text +## In-Line with text -In this option, the image or shape is placed on the same line surrounding with text like any other word or letter. This image or shape will be automatically moved along with the text while editing, whereas the other options denote that the image or shape stays in a fixed position while the text shifts and wraps around it. +In this option, the image or shape is placed on the same line surrounded by text like any other word or letter. This image or shape will be automatically moved along with the text while editing, whereas the other options mean that the image or shape stays in a fixed position while the text shifts and wraps around it. ![view of image with inline wrapping style in DocumentEditor](images/Text-Wrapping-Style_images/inline-textwrapping.PNG) -## In Front of Text +## In front of text -In this option, the image or shape is placed in front of the text. This can be used to place an image around some text or to add shape to highlight the part in a paragraph. +In this option, the image or shape is placed in front of the text. This can be used to place an image around some text or to add a shape to highlight the part of a paragraph. ![view of image with in front of text wrapping style in DocumentEditor](images/Text-Wrapping-Style_images/infront-textwrapping.PNG) -N> Starting from v18.2.0.x, the in front of wrapping styles are supported. +N> Starting from v18.2.0.x, the in-front-of wrapping styles are supported. ## Top and Bottom -In this option, Text wraps above and below the image or shape. No text is to the left or right of the image or shape. This can be used for larger images or shapes that occupy most of the width in a document. +In this option, text wraps above and below the image or shape. No text is to the left or right of the image or shape. This can be used for larger images or shapes that occupy most of the width in a document. N> Starting from v19.1.0.x, the top and bottom wrapping style is supported. @@ -40,12 +40,12 @@ In this option, the image or shape is placed behind the text. This can be used w ![view of image with behind wrapping style in DocumentEditor](images/Text-Wrapping-Style_images/behind-textwrapping.PNG) -N> Starting from v19.2.0.x, behind text wrapping styles are supported. +N> Starting from v19.2.0.x, behind text wrapping style is supported. ## Square -In this option, Text wraps around the image or text box in a square shape. +In this option, text wraps around the image or text box in a square shape. -N> Tight and Through styles will be preserved as square wrapping style in DocumentEditor which is supported from v19.2.0.x. +N> Tight and Through styles will be preserved as the square wrapping style in Document Editor, which is supported from v19.2.0.x. ![view of shape with square wrapping style in DocumentEditor](images/Text-Wrapping-Style_images/square-textwrapping.PNG) diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/track-changes.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/track-changes.md index 7456ba4fb0..29bacc1208 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/track-changes.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/track-changes.md @@ -1,6 +1,6 @@ --- layout: post -title: Track Changes in ASP.NET MVC Document Editor Control | Syncfusion +title: Track Changes in ASP.NET MVC DOCX Editor Component | Syncfusion description: Learn here all about track changes in Syncfusion ASP.NET MVC Document Editor component of Syncfusion Essential JS 2 and more. platform: document-processing control: Track Changes @@ -9,11 +9,11 @@ documentation: ug # Track Changes in Document Editor Component -Track Changes allows you to keep a record of changes or edits made to a document. You can then choose to accept or reject the modifications. It is a useful tool for managing changes made by several reviewers to the same document. If track changes option is enabled, all editing operations are preserved as revisions in Document Editor. +Track Changes allows you to keep a record of changes or edits made to a document. You can then choose to accept or reject the modifications. It is a useful tool for managing changes made by several reviewers to the same document. If the Track Changes option is enabled, all editing operations are preserved as revisions in the Document Editor. ## Enable track changes in Document Editor -The following example demonstrates how to enable track changes. +The following example demonstrates how to enable Track Changes. {% tabs %} @@ -25,7 +25,7 @@ The following example demonstrates how to enable track changes. {% endhighlight %} {% endtabs %} ->Track changes are document level settings. When opening a document, if the document does not have track changes enabled, then enableTrackChanges will be disabled even if we set enableTrackChanges = true in the initial rendering. If you want to enable track changes for all the documents, then we recommend enabling track changes during the document change event. The following example demonstrates how to enable Track changes for the all the Document while Opening. +N> Track changes are document-level settings. When opening a document, if the document does not have track changes enabled, then `enableTrackChanges` will be disabled even if `enableTrackChanges = true` is set during the initial rendering. If you want to enable track changes for all documents, then enable track changes during the `documentChange` event. The following example demonstrates how to enable Track Changes for all documents while opening. {% tabs %} @@ -36,9 +36,9 @@ The following example demonstrates how to enable track changes. {% include code-snippet/document-editor/asp-net-mvc/document-editor-container/track-changes-default/document-editor.cs %} {% endhighlight %} {% endtabs %} -## Show/Hide Revisions Pane - -The Show/Hide Revisions Pane feature in the Document Editor allows users to toggle the visibility of the revisions pane, providing flexibility in managing tracked changes within the document. +## Show/Hide revisions pane + +The Show/Hide Revisions Pane feature in the Document Editor allows users to toggle the visibility of the revisions pane, providing flexibility in reviewing tracked changes in the document. The following example code illustrates how to show/hide the revisions pane. @@ -53,7 +53,7 @@ The following example code illustrates how to show/hide the revisions pane. {% endtabs %} ## Get all tracked revisions -The following example demonstrate how to get all tracked revision from current document. +The following example demonstrates how to get all tracked revisions from the current document. ```typescript /** @@ -62,9 +62,9 @@ The following example demonstrate how to get all tracked revision from current d var revisions = container.documentEditor.revisions; ``` -## Accept or Reject all changes programmatically +## Accept or reject all changes programmatically -The following example demonstrates how to accept/reject all changes. +The following example demonstrates how to accept or reject all changes. ```typescript /** @@ -85,7 +85,7 @@ revisions.rejectAll(); ## Accept or reject a specific revision -The following example demonstrates how to accept/reject specific revision in the Document Editor. +The following example demonstrates how to accept or reject a specific revision in the Document Editor. ```typescript /** @@ -104,7 +104,7 @@ revisions.get(1).reject(); ## Navigate between the tracked changes -The following example demonstrates how to navigate tracked revision programmatically. +The following example demonstrates how to navigate tracked revisions programmatically. ```typescript /** @@ -120,13 +120,13 @@ container.documentEditor.selection.navigatePreviousRevision(); ## Filtering changes based on user -In DocumentEditor, we have built-in review panel in which we have provided support for filtering changes based on the user. +The Document Editor has a built-in review panel that supports filtering changes by user. ![Track changes](images/track-changes.png) ## Custom metadata along with author -The Document Editor provides options to customize revisions using `revisionSettings`. The `customData` property allows you to attach additional metadata to tracked revisions in the Word Processor. This metadata can represent roles, tags, or any custom identifier for the revision. To display this metadata along with the author name in the Track Changes pane, you must enable the `showCustomDataWithAuthor` property. +The Document Editor provides a `revisionSettings` property to customize revisions. The `customData` property allows you to attach additional metadata to tracked revisions in the Word Processor. This metadata can represent roles, tags, or any custom identifier for the revision. To display this metadata along with the author name in the Track Changes pane, you must enable the `showCustomDataWithAuthor` property. The following example code illustrates how to enable and update custom metadata for track changes revisions. @@ -143,18 +143,15 @@ The Track Changes pane will display the author name along with the custom metada ![Custom metadata along with author](images/track-changes-customData.png) ->Note: -* When you export the document as SFDT, the customData value is stored in the revision collection. When you reopen the SFDT, the custom data is automatically restored and displayed in the Track Changes pane. -* Other than SFDT export (e.g. DOCX and other), the customData is not preserved, as it is specific to the Document Editor component. +N> When you export the document as SFDT, the `customData` value is stored in the revision collection. When you reopen the SFDT, the custom data is restored automatically and displayed in the Track Changes pane. Other than SFDT export (e.g., DOCX and others), the `customData` is not preserved, as it is specific to the Document Editor component. ## Protect the document in track changes only mode -Document Editor provides support for protecting the document with `RevisionsOnly` protection. In this protection, all the users are allowed to view the document and do their corrections, but they cannot accept or reject any tracked changes in the document. Later, the author can view their corrections and accept or reject the changes. +The Document Editor provides support for protecting the document with `RevisionsOnly` protection. In this protection, all users can view the document and make corrections, but they cannot accept or reject any tracked changes in the document. Later, the author can view their corrections and accept or reject the changes. -Document editor provides an option to protect and unprotect document using `enforceProtection` and `stopProtection` API. - -The following example code illustrates how to enforce and stop protection in Document editor container. +The Document Editor provides options to protect and unprotect a document using the `enforceProtection` and `stopProtection` APIs. +The following example code illustrates how to enforce and stop protection in the Document Editor container. {% tabs %} {% highlight razor tabtitle="CSHTML" %} @@ -169,8 +166,7 @@ Tracked changes only protection can be enabled in UI by using [Restrict Editing ![Enable track changes only protection](images/tracked-changes.png) -N> In enforce Protection method, first parameter denotes password and second parameter denotes protection type. Possible values of protection type are `NoProtection |ReadOnly |FormFieldsOnly |CommentsOnly |RevisionsOnly`. In stop protection method, parameter denotes the password. - -## Online Demo +N> In the `enforceProtection` method, the first parameter denotes the password and the second parameter denotes the protection type. Possible values of the protection type are `NoProtection | ReadOnly | FormFieldsOnly | CommentsOnly | RevisionsOnly`. In the `stopProtection` method, the parameter denotes the password. +## Online demo -Explore how to track and review changes in Word documents using the ASP.NET MVC Document Editor in this live demo [here](https://document.syncfusion.com/demos/docx-editor/asp-net-mvc/documenteditor/trackchanges#/tailwind3). \ No newline at end of file +Explore how to track and review changes in Word documents using the ASP.NET MVC Document Editor in this [live demo](https://document.syncfusion.com/demos/docx-editor/asp-net-mvc/documenteditor/trackchanges#/tailwind3). \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/unsupported-features.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/unsupported-features.md index e41fdc5517..27d40bb526 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/unsupported-features.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/unsupported-features.md @@ -1,7 +1,7 @@ --- layout: post title: Unsupported features in ASP.NET MVC DOCX Editor component | Syncfusion -description: Learn about the list of unsupported features in the ASP.NET MVC Docx Editor to understand its limitations +description: Learn about the list of unsupported features in the ASP.NET MVC DOCX Editor to understand its limitations control: Unsupported features platform: document-processing documentation: ug @@ -10,7 +10,7 @@ domainurl: ##DomainURL## # Unsupported Features in ASP.NET MVC DOCX Editor -This section describes the unsupported elements in Syncfusion® ASP.NET MVC DOCX Editor (Document Editor) +This section describes the unsupported features in Syncfusion® ASP.NET MVC DOCX Editor (Document Editor). ## Document formatting @@ -21,22 +21,22 @@ This section describes the unsupported elements in Syncfusion® ASP.NET MVC DOCX | | Suppress line numbers | No | | | Don’t hyphenate | No | | | Border styles (*Except dotted and dashed; other styles are rendered as solid*) | Partial | -| Text Properties | Shading | No | +| Text Properties | Shading | No | | | Position | No | | | Font kerning | No | | | Ligatures | No | | | Number spacing | No | | | Number forms | No | | | Stylistic sets | No | -| | Contextual alternates| No | +| | Contextual alternates | No | | | Text Direction (Top to Bottom, Bottom to Top) | No | | | Border styles (*Except dotted and dashed; other styles are rendered as solid*) | Partial | | Section Formatting | Mirror margins | No | -| | Gutter | No | -| | Line numbers | No | -| | Bi-direction | No | +| | Gutter | No | +| | Line numbers | No | +| | Bidirectional | No | | Page background | Page background color or image | No | -| Watermark | Text and Picture watermark| No | +| Watermark | Text and Picture watermark | No | | Table Format | Border styles (*Except dotted and dashed; other styles are rendered as solid*) | Partial | ## Word Document Elements diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/view.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/view.md index 3f831fdf0e..0dc82aee39 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/view.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/view.md @@ -1,17 +1,17 @@ --- layout: post -title: View in ASP.NET MVC Document Editor Control | Syncfusion +title: View in ASP.NET MVC DOCX Editor Component | Syncfusion description: Learn here all about View in Syncfusion ASP.NET MVC Document Editor component of Syncfusion Essential JS 2 and more. platform: document-processing control: View documentation: ug --- -# View in DocumentEditor +# View in Document Editor -## Web Layout +## Web layout -DocumentEditor allows to change the view to web layout and print using the [`layoutType`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.DocumentEditor.DocumentEditor.html#Syncfusion_EJ2_DocumentEditor_DocumentEditor_LayoutType) property with the supported [`LayoutType`](https://help.syncfusion.com/cr/aspnetcore-js2/Syncfusion.EJ2.DocumentEditor.LayoutType.html) +The Document Editor allows you to change the view to web layout using the [`layoutType`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.DocumentEditor.DocumentEditor.html#Syncfusion_EJ2_DocumentEditor_DocumentEditor_LayoutType) property with the supported [`LayoutType`](https://help.syncfusion.com/cr/aspnetmvc-js2/Syncfusion.EJ2.DocumentEditor.LayoutType.html). {% tabs %} @@ -21,15 +21,15 @@ DocumentEditor allows to change the view to web layout and print using the [`lay {% highlight c# tabtitle="Web-layout.cs" %} {% endhighlight %}{% endtabs %} -### Online Demo +### Online demo -Explore how to view Word documents in web layout using the ASP.NET MVC Document Editor in this live demo [here](https://document.syncfusion.com/demos/docx-editor/asp-net-mvc/documenteditor/weblayout#/tailwind3). +Explore how to view Word documents in web layout using the ASP.NET MVC Document Editor in this [live demo](https://document.syncfusion.com/demos/docx-editor/asp-net-mvc/documenteditor/weblayout#/tailwind3). ## Ruler -Using ruler we can refer to setting specific margins, tab stops, or indentations within a document to ensure consistent formatting in Document Editor. +The ruler displays the document margins, tab stops, and indentation guides, allowing consistent formatting in the Document Editor. -The following example illustrates how to enable ruler in Document Editor +The following example illustrates how to enable the ruler in the Document Editor. {% tabs %} @@ -41,15 +41,15 @@ The following example illustrates how to enable ruler in Document Editor {% endhighlight %} {% endtabs %} -### Online Demo +### Online demo -Explore how to use the ruler in the ASP.NET MVC Document Editor for working with Word documents in this live demo [here](https://document.syncfusion.com/demos/docx-editor/asp-net-mvc/documenteditor/ruler#/tailwind3). +Explore how to use the ruler in the ASP.NET MVC Document Editor for working with Word documents in this [live demo](https://document.syncfusion.com/demos/docx-editor/asp-net-mvc/documenteditor/ruler#/tailwind3). -## Navigation Pane +## Navigation pane -Using the heading navigation pane allows users to swiftly navigate documents by heading, enhancing their ability to move through the document efficiently. +The heading navigation pane allows users to navigate documents by heading quickly, enhancing their ability to move through the document efficiently. -The following example illustrates how to enable heading navigation pane in Document Editor +The following example illustrates how to enable the heading navigation pane in the Document Editor. {% tabs %} @@ -61,6 +61,6 @@ The following example illustrates how to enable heading navigation pane in Docum {% endhighlight %} {% endtabs %} -### Online Demo +### Online demo -Explore how to navigate through headings in Word documents using the ASP.NET MVC Document Editor in this live demo [here](https://document.syncfusion.com/demos/docx-editor/asp-net-mvc/documenteditor/headingnavigation#/tailwind3). \ No newline at end of file +Explore how to navigate through headings in Word documents using the ASP.NET MVC Document Editor in this [live demo](https://document.syncfusion.com/demos/docx-editor/asp-net-mvc/documenteditor/headingnavigation#/tailwind3). \ No newline at end of file From 9b07c04ebe6e06a08342932180d0b4a94b6722e5 Mon Sep 17 00:00:00 2001 From: Vellaisamy Auvudaiappan Date: Mon, 10 Aug 2026 20:35:26 +0530 Subject: [PATCH 2/6] 1045868-resolved ci issue --- Document-Processing/Word/Word-Processor/asp-net-mvc/table.md | 2 +- .../Word/Word-Processor/asp-net-mvc/text-format.md | 2 +- .../Word/Word-Processor/asp-net-mvc/text-wrapping-style.md | 4 ++-- Document-Processing/Word/Word-Processor/asp-net-mvc/view.md | 3 ++- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/table.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/table.md index b991972ea7..9032395dff 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/table.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/table.md @@ -8,7 +8,7 @@ documentation: ug --- -# Tables +# Working with Tables in ASP.NET MVC Document Editor Tables are an efficient way to present information. The Document Editor can display and edit tables. You can select and edit tables through keyboard, mouse, or touch interactions. It exposes a rich set of APIs to perform these operations programmatically. diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/text-format.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/text-format.md index 0b16370cf3..b2b59f666a 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/text-format.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/text-format.md @@ -8,7 +8,7 @@ documentation: ug --- -# Working with Text Formatting +# Working with Text Formatting in ASP.NET MVC Document Editor Document Editor supports several formatting options for text like bold, italic, font color, highlight color, and more. This section describes how to modify the formatting for selected text in detail. diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/text-wrapping-style.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/text-wrapping-style.md index 7ba796d676..43f41a6bbd 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/text-wrapping-style.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/text-wrapping-style.md @@ -1,6 +1,6 @@ --- layout: post -title: Text Wrapping Style in ASP.NET MVC DOCX Editor Component +title: Text Wrapping Style in ASP.NET MVC DOCX Editor Component | Syncfusion description: Learn here all about text wrapping style in Syncfusion ASP.NET MVC Document Editor component of Syncfusion Essential JS 2 and more. platform: document-processing control: Text Wrapping Style @@ -8,7 +8,7 @@ documentation: ug --- -# Text Wrapping Style in Document Editor +# Working with Track Changes in ASP.NET MVC Document Editor Text wrapping refers to how images and shapes are fitted with surrounding text in a document. Currently, Document Editor has only preservation support for image and text box shapes with the following wrapping styles. diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/view.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/view.md index 0dc82aee39..765a534f14 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/view.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/view.md @@ -19,7 +19,8 @@ The Document Editor allows you to change the view to web layout using the [`layo {% include code-snippet/document-editor/asp-net-mvc/web-layout/razor %} {% endhighlight %} {% highlight c# tabtitle="Web-layout.cs" %} -{% endhighlight %}{% endtabs %} +{% endhighlight %} +{% endtabs %} ### Online demo From c2b6038a4afb4bd60bb3f847d03f97dafa877e65 Mon Sep 17 00:00:00 2001 From: Vellaisamy Auvudaiappan Date: Mon, 10 Aug 2026 20:48:03 +0530 Subject: [PATCH 3/6] 1045868-resolved duplicate heading ci issue --- .../Word/Word-Processor/asp-net-mvc/track-changes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/track-changes.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/track-changes.md index 29bacc1208..5bcd449428 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/track-changes.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/track-changes.md @@ -7,7 +7,7 @@ control: Track Changes documentation: ug --- -# Track Changes in Document Editor Component +# Working with Track Changes in ASP.NET MVC Document Editor Track Changes allows you to keep a record of changes or edits made to a document. You can then choose to accept or reject the modifications. It is a useful tool for managing changes made by several reviewers to the same document. If the Track Changes option is enabled, all editing operations are preserved as revisions in the Document Editor. From f346b6885d267ab02c85582a6998e194e26e7c10 Mon Sep 17 00:00:00 2001 From: Vellaisamy Auvudaiappan Date: Tue, 11 Aug 2026 14:08:27 +0530 Subject: [PATCH 4/6] 1045868-addressed the review changes in heading 1 --- Document-Processing/Word/Word-Processor/asp-net-mvc/table.md | 2 +- .../Word/Word-Processor/asp-net-mvc/text-format.md | 2 +- .../Word/Word-Processor/asp-net-mvc/text-wrapping-style.md | 2 +- .../Word/Word-Processor/asp-net-mvc/track-changes.md | 2 +- .../Word/Word-Processor/asp-net-mvc/unsupported-features.md | 2 +- Document-Processing/Word/Word-Processor/asp-net-mvc/view.md | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/table.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/table.md index 9032395dff..e1febd1e68 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/table.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/table.md @@ -8,7 +8,7 @@ documentation: ug --- -# Working with Tables in ASP.NET MVC Document Editor +# Table in ASP.NET MVC Document Editor Tables are an efficient way to present information. The Document Editor can display and edit tables. You can select and edit tables through keyboard, mouse, or touch interactions. It exposes a rich set of APIs to perform these operations programmatically. diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/text-format.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/text-format.md index b2b59f666a..103dfb813d 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/text-format.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/text-format.md @@ -8,7 +8,7 @@ documentation: ug --- -# Working with Text Formatting in ASP.NET MVC Document Editor +# Text Formatting in ASP.NET MVC Document Editor Document Editor supports several formatting options for text like bold, italic, font color, highlight color, and more. This section describes how to modify the formatting for selected text in detail. diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/text-wrapping-style.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/text-wrapping-style.md index 43f41a6bbd..37fbebdc3e 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/text-wrapping-style.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/text-wrapping-style.md @@ -8,7 +8,7 @@ documentation: ug --- -# Working with Track Changes in ASP.NET MVC Document Editor +# Text Wrapping Style in ASP.NET MVC Document Editor Text wrapping refers to how images and shapes are fitted with surrounding text in a document. Currently, Document Editor has only preservation support for image and text box shapes with the following wrapping styles. diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/track-changes.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/track-changes.md index 5bcd449428..c15a62fd8d 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/track-changes.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/track-changes.md @@ -7,7 +7,7 @@ control: Track Changes documentation: ug --- -# Working with Track Changes in ASP.NET MVC Document Editor +# Track Changes in ASP.NET MVC Document Editor Track Changes allows you to keep a record of changes or edits made to a document. You can then choose to accept or reject the modifications. It is a useful tool for managing changes made by several reviewers to the same document. If the Track Changes option is enabled, all editing operations are preserved as revisions in the Document Editor. diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/unsupported-features.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/unsupported-features.md index 27d40bb526..7a175af3da 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/unsupported-features.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/unsupported-features.md @@ -8,7 +8,7 @@ documentation: ug domainurl: ##DomainURL## --- -# Unsupported Features in ASP.NET MVC DOCX Editor +# Unsupported Features in ASP.NET MVC Document Editor This section describes the unsupported features in Syncfusion® ASP.NET MVC DOCX Editor (Document Editor). diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/view.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/view.md index 765a534f14..3f9fa5ab4f 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/view.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/view.md @@ -7,7 +7,7 @@ control: View documentation: ug --- -# View in Document Editor +# View in ASP.NET MVC Document Editor ## Web layout From 728a0a70ea5e477c72c5cdd9a9009b84249c9985 Mon Sep 17 00:00:00 2001 From: Vellaisamy Auvudaiappan Date: Tue, 11 Aug 2026 17:05:59 +0530 Subject: [PATCH 5/6] 1045868-empty commit From 6ec541890b1f47cf67d779a8edd1e77fe61cac06 Mon Sep 17 00:00:00 2001 From: Vellaisamy Auvudaiappan Date: Tue, 11 Aug 2026 20:50:15 +0530 Subject: [PATCH 6/6] 1045868-added slash --- .../Word/Word-Processor/asp-net-mvc/unsupported-features.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/unsupported-features.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/unsupported-features.md index 7a175af3da..8fb02fe72c 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/unsupported-features.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/unsupported-features.md @@ -54,4 +54,4 @@ This section describes the unsupported features in Syncfusion® ASP.NET MVC DOCX | Signature line | No | | Special Characters, Symbols, Equations | No | | Built-in and custom document properties | No | -| Comment reactions | No \ No newline at end of file +| Comment reactions | No | \ No newline at end of file