diff --git a/Document-Processing/Word/Word-Processor/angular/text-format.md b/Document-Processing/Word/Word-Processor/angular/text-format.md index c75ec2ff8..6bd19804f 100644 --- a/Document-Processing/Word/Word-Processor/angular/text-format.md +++ b/Document-Processing/Word/Word-Processor/angular/text-format.md @@ -186,7 +186,6 @@ The highlight color of the selected text can be get or set using the following s let highlightColor : HighlightColor = documenteditor.selection.characterFormat.highlightColor; //Sets highlightColor formatting for selected text. documenteditor.selection.characterFormat.highlightColor= 'Pink'; -documenteditor.selection.characterFormat.highlightColor= '#FFC0CB'; ``` ## Toolbar with options for text formatting diff --git a/Document-Processing/Word/Word-Processor/asp-net-core/text-format.md b/Document-Processing/Word/Word-Processor/asp-net-core/text-format.md index 9782ebb8c..cc1e3fcce 100644 --- a/Document-Processing/Word/Word-Processor/asp-net-core/text-format.md +++ b/Document-Processing/Word/Word-Processor/asp-net-core/text-format.md @@ -157,7 +157,6 @@ The highlight color of the selected text can be get or set using the following s ```typescript documenteditor.selection.characterFormat.highlightColor= 'Pink'; -documenteditor.selection.characterFormat.highlightColor= '#FFC0CB'; ``` ## Toolbar with options for text formatting 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 2b841b29e..796c049cb 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 @@ -157,7 +157,6 @@ The highlight color of the selected text can be get or set using the following s ```typescript documenteditor.selection.characterFormat.highlightColor= 'Pink'; -documenteditor.selection.characterFormat.highlightColor= '#FFC0CB'; ``` ## Toolbar with options for text formatting diff --git a/Document-Processing/Word/Word-Processor/javascript-es5/text-format.md b/Document-Processing/Word/Word-Processor/javascript-es5/text-format.md index c2d5e0be8..52134231d 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es5/text-format.md +++ b/Document-Processing/Word/Word-Processor/javascript-es5/text-format.md @@ -186,7 +186,6 @@ The highlight color of the selected text can be get or set using the following s let highlightColor : HighlightColor = documenteditor.selection.characterFormat.highlightColor; //Sets highlightColor formatting for selected text. documenteditor.selection.characterFormat.highlightColor = 'Pink'; -documenteditor.selection.characterFormat.highlightColor = '#FFC0CB'; ``` N> 1. Character scaling and spacing present in the input Word document will be preserved in the exported Word document. N> 2. Scaling is implemented using the letterSpacing property, which may present compatibility problems. For more information, please refer to this [link](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/letterSpacing#browser_compatibility) diff --git a/Document-Processing/Word/Word-Processor/javascript-es6/text-format.md b/Document-Processing/Word/Word-Processor/javascript-es6/text-format.md index 153d22e56..e35903b98 100644 --- a/Document-Processing/Word/Word-Processor/javascript-es6/text-format.md +++ b/Document-Processing/Word/Word-Processor/javascript-es6/text-format.md @@ -186,7 +186,6 @@ The highlight color of the selected text can be get or set using the following s let highlightColor : HighlightColor = documenteditor.selection.characterFormat.highlightColor; //Sets highlightColor formatting for selected text. documenteditor.selection.characterFormat.highlightColor = 'Pink'; -documenteditor.selection.characterFormat.highlightColor = '#FFC0CB'; ``` N> 1. Character scaling and spacing present in the input Word document will be preserved in the exported Word document. N> 2. Scaling is implemented using the letterSpacing property, which may present compatibility problems. For more information, please refer to this [link](https://developer.mozilla.org/en-US/docs/Web/API/CanvasRenderingContext2D/letterSpacing#browser_compatibility)