From 1ffaf56a9f3d2b585e77823432f7cb7425961741 Mon Sep 17 00:00:00 2001 From: ManoMurugan Date: Thu, 20 Nov 2025 12:40:57 +0530 Subject: [PATCH 1/2] 993089: Update the highlight color documentation in Document editor --- Document-Processing/Word/Word-Processor/angular/text-format.md | 1 - .../Word/Word-Processor/asp-net-core/text-format.md | 1 - .../Word/Word-Processor/asp-net-mvc/text-format.md | 1 - .../Word/Word-Processor/javascript-es5/text-format.md | 1 - .../Word/Word-Processor/javascript-es6/text-format.md | 1 - 5 files changed, 5 deletions(-) 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) From d9b5eecf188f8f5636857996f49b4ad1089a2ff7 Mon Sep 17 00:00:00 2001 From: manomurugan Date: Mon, 1 Dec 2025 13:17:29 +0530 Subject: [PATCH 2/2] 993089: cherryPick