Skip to content

Commit b129e89

Browse files
committed
Merge branch '986588-nextH' of https://github.com/syncfusion-content/document-processing-docs into hotfix/hotfix-v31.2.2
2 parents 582ac55 + 9da7e2d commit b129e89

File tree

8 files changed

+13
-13
lines changed

8 files changed

+13
-13
lines changed

Document-Processing/Word/Word-Processor/angular/styles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ A Style in document editor should have the following properties:
1818

1919
* **name**: Name of the style. All styles in a document have a unique name, which is used as an identifier when applying the style.
2020
* **type**: Specifies the document elements that the style will target. For example, paragraph or character.
21-
* **next**: Specifies that the current style inherits the style set to this property. This is how hierarchical styles are defined.
21+
* **next**: Specifies the style that should be automatically applied to a new paragraph created after the current one.
2222
* **link**: Provides a relation between the paragraph and character style.
2323
* **characterFormat**: Specifies the properties of paragraph and character style.
2424
* **paragraphFormat**: Specifies the properties of paragraph style.

Document-Processing/Word/Word-Processor/asp-net-core/styles.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ documentation: ug
88
---
99

1010

11-
# Styles
11+
# Styles in Document Editor Control
1212

1313
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.
1414

@@ -18,7 +18,7 @@ A Style in document editor should have the following properties:
1818

1919
* **name**: Name of the style. All styles in a document have a unique name, which is used as an identifier when applying the style.
2020
* **type**: Specifies the document elements that the style will target. For example, paragraph or character.
21-
* **next**: Specifies that the current style inherits the style set to this property. This is how hierarchical styles are defined.
21+
* **next**: Specifies the style that should be automatically applied to a new paragraph created after the current one.
2222
* **link**: Provides a relation between the paragraph and character style.
2323
* **characterFormat**: Specifies the properties of paragraph and character style.
2424
* **paragraphFormat**: Specifies the properties of paragraph style.

Document-Processing/Word/Word-Processor/asp-net-mvc/styles.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ documentation: ug
88
---
99

1010

11-
# Styles
11+
# Styles in Document Editor Control
1212

1313
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.
1414

@@ -18,7 +18,7 @@ A Style in document editor should have the following properties:
1818

1919
* **name**: Name of the style. All styles in a document have a unique name, which is used as an identifier when applying the style.
2020
* **type**: Specifies the document elements that the style will target. For example, paragraph or character.
21-
* **next**: Specifies that the current style inherits the style set to this property. This is how hierarchical styles are defined.
21+
* **next**: Specifies the style that should be automatically applied to a new paragraph created after the current one.
2222
* **link**: Provides a relation between the paragraph and character style.
2323
* **characterFormat**: Specifies the properties of paragraph and character style.
2424
* **paragraphFormat**: Specifies the properties of paragraph style.

Document-Processing/Word/Word-Processor/blazor/styles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ A Style in document editor should have the following properties:
1717

1818
* **name**: Name of the style. All styles in a document have a unique name, which is used as an identifier when applying the style.
1919
* **type**: Specifies the document elements that the style will target. For example, paragraph or character.
20-
* **next**: Specifies that the current style inherits the style set to this property. This is how hierarchical styles are defined.
20+
* **next**: Specifies the style that should be automatically applied to a new paragraph created after the current one.
2121
* **link**: Provides a relation between the paragraph and character style.
2222
* **characterFormat**: Specifies the properties of paragraph and character style.
2323
* **paragraphFormat**: Specifies the properties of paragraph style.

Document-Processing/Word/Word-Processor/javascript-es5/styles.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ A Style in Document Editor should have the following properties:
1818

1919
* **name**: Name of the style. All styles in a document have a unique name, which is used as an identifier when applying the style.
2020
* **type**: Specifies the document elements that the style will target. For example, paragraph or character.
21-
* **next**: Specifies that the current style inherits the style set to this property. This is how hierarchical styles are defined.
21+
* **next**: Specifies the style that should be automatically applied to a new paragraph created after the current one.
2222
* **link**: Provides a relation between the paragraph and character style.
2323
* **characterFormat**: Specifies the properties of paragraph and character style.
2424
* **paragraphFormat**: Specifies the properties of paragraph style.
@@ -206,7 +206,7 @@ let paragraphStyles = documentEditor.getStyles('Character');
206206

207207
## Modify an existing style
208208

209-
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.
209+
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.
210210

211211
The following illustrate to modify an existing style.
212212

Document-Processing/Word/Word-Processor/javascript-es6/styles.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ A Style in Document Editor should have the following properties:
1818

1919
* **name**: Name of the style. All styles in a document have a unique name, which is used as an identifier when applying the style.
2020
* **type**: Specifies the document elements that the style will target. For example, paragraph or character.
21-
* **next**: Specifies that the current style inherits the style set to this property. This is how hierarchical styles are defined.
21+
* **next**: Specifies the style that should be automatically applied to a new paragraph created after the current one.
2222
* **link**: Provides a relation between the paragraph and character style.
2323
* **characterFormat**: Specifies the properties of paragraph and character style.
2424
* **paragraphFormat**: Specifies the properties of paragraph style.
@@ -187,7 +187,7 @@ let paragraphStyles = documentEditor.getStyles('Character');
187187

188188
## Modify an existing style
189189

190-
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.
190+
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.
191191

192192
The following illustrate to modify an existing style.
193193

Document-Processing/Word/Word-Processor/react/styles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ A Style in document editor should have the following properties:
1818

1919
* **name**: Name of the style. All styles in a document have a unique name, which is used as an identifier when applying the style.
2020
* **type**: Specifies the document elements that the style will target. For example, paragraph or character.
21-
* **next**: Specifies that the current style inherits the style set to this property. This is how hierarchical styles are defined.
21+
* **next**: Specifies the style that should be automatically applied to a new paragraph created after the current one.
2222
* **link**: Provides a relation between the paragraph and character style.
2323
* **characterFormat**: Specifies the properties of paragraph and character style.
2424
* **paragraphFormat**: Specifies the properties of paragraph style.

Document-Processing/Word/Word-Processor/vue/styles.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ A Style in document editor should have the following properties:
1818

1919
* **name**: Name of the style. All styles in a document have a unique name, which is used as an identifier when applying the style.
2020
* **type**: Specifies the document elements that the style will target. For example, paragraph or character.
21-
* **next**: Specifies that the current style inherits the style set to this property. This is how hierarchical styles are defined.
21+
* **next**: Specifies the style that should be automatically applied to a new paragraph created after the current one.
2222
* **link**: Provides a relation between the paragraph and character style.
2323
* **characterFormat**: Specifies the properties of paragraph and character style.
2424
* **paragraphFormat**: Specifies the properties of paragraph style.
@@ -185,7 +185,7 @@ let paragraphStyles = this.$refs.documenteditor.ej2Instances.documentEditor.getS
185185

186186
## Modify an existing style
187187

188-
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.
188+
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.
189189

190190
The following illustrate to modify an existing style.
191191

0 commit comments

Comments
 (0)