From 20567a86ef3c8470ccb0bd30a93719615b1d7643 Mon Sep 17 00:00:00 2001 From: NiranjanAnumuthu21 Date: Mon, 21 Jul 2025 21:59:04 +0530 Subject: [PATCH 1/3] 955200: Added documentation for change case --- ej2-asp-core-mvc/document-editor/text-format.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ej2-asp-core-mvc/document-editor/text-format.md b/ej2-asp-core-mvc/document-editor/text-format.md index a3e466ac07..f0ed2f0226 100644 --- a/ej2-asp-core-mvc/document-editor/text-format.md +++ b/ej2-asp-core-mvc/document-editor/text-format.md @@ -106,6 +106,14 @@ You can make a subscript or superscript text as normal using the following code. documenteditor.selection.characterFormat.baselineAlignment='Normal'; ``` +## Change case + +You can apply different case formatting based on the selected text. Refer to the following sample code. + +```typescript +documenteditor.editor.changeCase('Uppercase'|'Lowercase'|'SentenceCase'|'ToggleCase'|'CapitalizeEachWord'); +``` + ## Size The size of selected text can be get or set using the following code. From c6499ce986432da48ff6cc6fcb544cd1090b8793 Mon Sep 17 00:00:00 2001 From: NiranjanAnumuthu21 Date: Mon, 21 Jul 2025 22:32:34 +0530 Subject: [PATCH 2/3] 955200: Added documentation for change case --- ej2-asp-core-mvc/document-editor/text-format.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ej2-asp-core-mvc/document-editor/text-format.md b/ej2-asp-core-mvc/document-editor/text-format.md index f0ed2f0226..801d14c72b 100644 --- a/ej2-asp-core-mvc/document-editor/text-format.md +++ b/ej2-asp-core-mvc/document-editor/text-format.md @@ -190,6 +190,6 @@ documenteditor.selection.characterFormat.highlightColor= '#FFC0CB'; ## See Also -* [Feature modules](../document-editor/feature-module/) -* [Font dialog](../document-editor/dialog/#font-dialog) -* [Keyboard shortcuts](../document-editor/keyboard-shortcut/) \ No newline at end of file +* [Feature modules](../document-editor/feature-module) +* [Font dialog](../document-editor/dialog#font-dialog) +* [Keyboard shortcuts](../document-editor/keyboard-shortcut) \ No newline at end of file From 827c4a7309772f873f1fae48a4cbdfa911221d1b Mon Sep 17 00:00:00 2001 From: NiranjanAnumuthu21 Date: Mon, 21 Jul 2025 22:33:03 +0530 Subject: [PATCH 3/3] 955200: Added documentation for change case