From 0022374a875600eee0213d549ca8479f062143eb Mon Sep 17 00:00:00 2001 From: ManoMurugan Date: Tue, 14 Oct 2025 09:29:13 +0530 Subject: [PATCH 1/2] 986588: Need to change the details provided for next in styles documentation --- Document-Processing/Word/Word-Processor/angular/styles.md | 2 +- Document-Processing/Word/Word-Processor/asp-net-core/styles.md | 2 +- Document-Processing/Word/Word-Processor/asp-net-mvc/styles.md | 2 +- Document-Processing/Word/Word-Processor/blazor/styles.md | 2 +- .../Word/Word-Processor/javascript-es5/styles.md | 2 +- .../Word/Word-Processor/javascript-es6/styles.md | 2 +- Document-Processing/Word/Word-Processor/react/styles.md | 2 +- Document-Processing/Word/Word-Processor/vue/styles.md | 2 +- 8 files changed, 8 insertions(+), 8 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..f1ccaa497 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-core/styles.md +++ b/Document-Processing/Word/Word-Processor/asp-net-core/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-mvc/styles.md b/Document-Processing/Word/Word-Processor/asp-net-mvc/styles.md index f87df2f8c..3732a250c 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-mvc/styles.md +++ b/Document-Processing/Word/Word-Processor/asp-net-mvc/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/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..4c5fcc38e 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. diff --git a/Document-Processing/Word/Word-Processor/javascript-es6/styles.md b/Document-Processing/Word/Word-Processor/javascript-es6/styles.md index ed1627bef..0251bbb17 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. 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..fc3ae6bb0 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. From 21881db8c977d2740d4eccc692a14adfd909c98e Mon Sep 17 00:00:00 2001 From: ManoMurugan Date: Tue, 14 Oct 2025 09:48:54 +0530 Subject: [PATCH 2/2] 986588: CI failure --- Document-Processing/Word/Word-Processor/asp-net-core/styles.md | 2 +- Document-Processing/Word/Word-Processor/asp-net-mvc/styles.md | 2 +- .../Word/Word-Processor/javascript-es5/styles.md | 2 +- .../Word/Word-Processor/javascript-es6/styles.md | 2 +- Document-Processing/Word/Word-Processor/vue/styles.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) 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 f1ccaa497..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. 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 3732a250c..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. diff --git a/Document-Processing/Word/Word-Processor/javascript-es5/styles.md b/Document-Processing/Word/Word-Processor/javascript-es5/styles.md index 4c5fcc38e..56527a2d6 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es5/styles.md +++ b/Document-Processing/Word/Word-Processor/javascript-es5/styles.md @@ -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 0251bbb17..18a11c916 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es6/styles.md +++ b/Document-Processing/Word/Word-Processor/javascript-es6/styles.md @@ -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/vue/styles.md b/Document-Processing/Word/Word-Processor/vue/styles.md index fc3ae6bb0..b2d80cb26 100644 --- a/Document-Processing/Word/Word-Processor/vue/styles.md +++ b/Document-Processing/Word/Word-Processor/vue/styles.md @@ -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.