From 9da7e2de1b2ccf8b63d6a75674cf7fbe1df68912 Mon Sep 17 00:00:00 2001 From: ManoMurugan Date: Tue, 14 Oct 2025 10:39:48 +0530 Subject: [PATCH 1/2] 986588:Details provided for 'next' in styles document Editor --- Document-Processing/Word/Word-Processor/angular/styles.md | 2 +- .../Word/Word-Processor/asp-net-core/styles.md | 4 ++-- Document-Processing/Word/Word-Processor/asp-net-mvc/styles.md | 4 ++-- Document-Processing/Word/Word-Processor/blazor/styles.md | 2 +- .../Word/Word-Processor/javascript-es5/styles.md | 4 ++-- .../Word/Word-Processor/javascript-es6/styles.md | 4 ++-- Document-Processing/Word/Word-Processor/react/styles.md | 2 +- Document-Processing/Word/Word-Processor/vue/styles.md | 4 ++-- 8 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Document-Processing/Word/Word-Processor/angular/styles.md b/Document-Processing/Word/Word-Processor/angular/styles.md index 40795a2e9..040334bdb 100644 --- a/Document-Processing/Word/Word-Processor/angular/styles.md +++ b/Document-Processing/Word/Word-Processor/angular/styles.md @@ -18,7 +18,7 @@ A Style in document editor should have the following properties: * **name**: Name of the style. All styles in a document have a unique name, which is used as an identifier when applying the style. * **type**: Specifies the document elements that the style will target. For example, paragraph or character. -* **next**: Specifies that the current style inherits the style set to this property. This is how hierarchical styles are defined. +* **next**: Specifies the style that should be automatically applied to a new paragraph created after the current one. * **link**: Provides a relation between the paragraph and character style. * **characterFormat**: Specifies the properties of paragraph and character style. * **paragraphFormat**: Specifies the properties of paragraph style. diff --git a/Document-Processing/Word/Word-Processor/asp-net-core/styles.md b/Document-Processing/Word/Word-Processor/asp-net-core/styles.md index 27bd641e5..b7754f394 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-core/styles.md +++ b/Document-Processing/Word/Word-Processor/asp-net-core/styles.md @@ -8,7 +8,7 @@ documentation: ug --- -# Styles +# Styles in Document Editor Control Styles are useful for applying a set of formatting consistently throughout the document. In document editor, styles are created and added to a document programmatically or via the built-in Styles dialog. @@ -18,7 +18,7 @@ A Style in document editor should have the following properties: * **name**: Name of the style. All styles in a document have a unique name, which is used as an identifier when applying the style. * **type**: Specifies the document elements that the style will target. For example, paragraph or character. -* **next**: Specifies that the current style inherits the style set to this property. This is how hierarchical styles are defined. +* **next**: Specifies the style that should be automatically applied to a new paragraph created after the current one. * **link**: Provides a relation between the paragraph and character style. * **characterFormat**: Specifies the properties of paragraph and character style. * **paragraphFormat**: Specifies the properties of paragraph style. diff --git a/Document-Processing/Word/Word-Processor/asp-net-mvc/styles.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/styles.md index f87df2f8c..db13eb620 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/styles.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/styles.md @@ -8,7 +8,7 @@ documentation: ug --- -# Styles +# Styles in Document Editor Control Styles are useful for applying a set of formatting consistently throughout the document. In document editor, styles are created and added to a document programmatically or via the built-in Styles dialog. @@ -18,7 +18,7 @@ A Style in document editor should have the following properties: * **name**: Name of the style. All styles in a document have a unique name, which is used as an identifier when applying the style. * **type**: Specifies the document elements that the style will target. For example, paragraph or character. -* **next**: Specifies that the current style inherits the style set to this property. This is how hierarchical styles are defined. +* **next**: Specifies the style that should be automatically applied to a new paragraph created after the current one. * **link**: Provides a relation between the paragraph and character style. * **characterFormat**: Specifies the properties of paragraph and character style. * **paragraphFormat**: Specifies the properties of paragraph style. diff --git a/Document-Processing/Word/Word-Processor/blazor/styles.md b/Document-Processing/Word/Word-Processor/blazor/styles.md index a8088c46e..e6d317ce6 100644 --- a/Document-Processing/Word/Word-Processor/blazor/styles.md +++ b/Document-Processing/Word/Word-Processor/blazor/styles.md @@ -17,7 +17,7 @@ A Style in document editor should have the following properties: * **name**: Name of the style. All styles in a document have a unique name, which is used as an identifier when applying the style. * **type**: Specifies the document elements that the style will target. For example, paragraph or character. -* **next**: Specifies that the current style inherits the style set to this property. This is how hierarchical styles are defined. +* **next**: Specifies the style that should be automatically applied to a new paragraph created after the current one. * **link**: Provides a relation between the paragraph and character style. * **characterFormat**: Specifies the properties of paragraph and character style. * **paragraphFormat**: Specifies the properties of paragraph style. diff --git a/Document-Processing/Word/Word-Processor/javascript-es5/styles.md b/Document-Processing/Word/Word-Processor/javascript-es5/styles.md index 8956f91f5..56527a2d6 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es5/styles.md +++ b/Document-Processing/Word/Word-Processor/javascript-es5/styles.md @@ -18,7 +18,7 @@ A Style in Document Editor should have the following properties: * **name**: Name of the style. All styles in a document have a unique name, which is used as an identifier when applying the style. * **type**: Specifies the document elements that the style will target. For example, paragraph or character. -* **next**: Specifies that the current style inherits the style set to this property. This is how hierarchical styles are defined. +* **next**: Specifies the style that should be automatically applied to a new paragraph created after the current one. * **link**: Provides a relation between the paragraph and character style. * **characterFormat**: Specifies the properties of paragraph and character style. * **paragraphFormat**: Specifies the properties of paragraph style. @@ -206,7 +206,7 @@ let paragraphStyles = documentEditor.getStyles('Character'); ## Modify an existing style -You can modify a existing style with the specified style properties using [`createStyle`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/editor#createStyle) method. If modifyExistingStyle parameter is set to `true` the style properties is updated to the existing style. +You can modify a existing style with the specified style properties using [`createStyle`](https://ej2.syncfusion.com/javascript/documentation/api/document-editor/editor/#createStyle) method. If modifyExistingStyle parameter is set to `true` the style properties is updated to the existing style. The following illustrate to modify an existing style. diff --git a/Document-Processing/Word/Word-Processor/javascript-es6/styles.md b/Document-Processing/Word/Word-Processor/javascript-es6/styles.md index ed1627bef..18a11c916 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es6/styles.md +++ b/Document-Processing/Word/Word-Processor/javascript-es6/styles.md @@ -18,7 +18,7 @@ A Style in Document Editor should have the following properties: * **name**: Name of the style. All styles in a document have a unique name, which is used as an identifier when applying the style. * **type**: Specifies the document elements that the style will target. For example, paragraph or character. -* **next**: Specifies that the current style inherits the style set to this property. This is how hierarchical styles are defined. +* **next**: Specifies the style that should be automatically applied to a new paragraph created after the current one. * **link**: Provides a relation between the paragraph and character style. * **characterFormat**: Specifies the properties of paragraph and character style. * **paragraphFormat**: Specifies the properties of paragraph style. @@ -187,7 +187,7 @@ let paragraphStyles = documentEditor.getStyles('Character'); ## Modify an existing style -You can modify a existing style with the specified style properties using [`createStyle`](https://ej2.syncfusion.com/documentation/api/document-editor/editor#createStyle) method. If modifyExistingStyle parameter is set to `true` the style properties is updated to the existing style. +You can modify a existing style with the specified style properties using [`createStyle`](https://ej2.syncfusion.com/documentation/api/document-editor/editor/#createStyle) method. If modifyExistingStyle parameter is set to `true` the style properties is updated to the existing style. The following illustrate to modify an existing style. diff --git a/Document-Processing/Word/Word-Processor/react/styles.md b/Document-Processing/Word/Word-Processor/react/styles.md index 65e3db229..8c6b2ffd5 100644 --- a/Document-Processing/Word/Word-Processor/react/styles.md +++ b/Document-Processing/Word/Word-Processor/react/styles.md @@ -18,7 +18,7 @@ A Style in document editor should have the following properties: * **name**: Name of the style. All styles in a document have a unique name, which is used as an identifier when applying the style. * **type**: Specifies the document elements that the style will target. For example, paragraph or character. -* **next**: Specifies that the current style inherits the style set to this property. This is how hierarchical styles are defined. +* **next**: Specifies the style that should be automatically applied to a new paragraph created after the current one. * **link**: Provides a relation between the paragraph and character style. * **characterFormat**: Specifies the properties of paragraph and character style. * **paragraphFormat**: Specifies the properties of paragraph style. diff --git a/Document-Processing/Word/Word-Processor/vue/styles.md b/Document-Processing/Word/Word-Processor/vue/styles.md index c73d404d4..b2d80cb26 100644 --- a/Document-Processing/Word/Word-Processor/vue/styles.md +++ b/Document-Processing/Word/Word-Processor/vue/styles.md @@ -18,7 +18,7 @@ A Style in document editor should have the following properties: * **name**: Name of the style. All styles in a document have a unique name, which is used as an identifier when applying the style. * **type**: Specifies the document elements that the style will target. For example, paragraph or character. -* **next**: Specifies that the current style inherits the style set to this property. This is how hierarchical styles are defined. +* **next**: Specifies the style that should be automatically applied to a new paragraph created after the current one. * **link**: Provides a relation between the paragraph and character style. * **characterFormat**: Specifies the properties of paragraph and character style. * **paragraphFormat**: Specifies the properties of paragraph style. @@ -185,7 +185,7 @@ let paragraphStyles = this.$refs.documenteditor.ej2Instances.documentEditor.getS ## Modify an existing style -You can modify a existing style with the specified style properties using [`createStyle`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/editor#createStyle) method. If modifyExistingStyle parameter is set to `true` the style properties is updated to the existing style. +You can modify a existing style with the specified style properties using [`createStyle`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/editor/#createStyle) method. If modifyExistingStyle parameter is set to `true` the style properties is updated to the existing style. The following illustrate to modify an existing style. From 9f6c4caf48215f0f288776d9f25daab637d7a55c Mon Sep 17 00:00:00 2001 From: ManoMurugan Date: Fri, 17 Oct 2025 12:22:01 +0530 Subject: [PATCH 2/2] 986588: Details provided for next in styles document Editor