diff --git a/Document-Processing/Word/Word-Processor/vue/how-to/change-the-default-search-highlight-color.md b/Document-Processing/Word/Word-Processor/vue/how-to/change-the-default-search-highlight-color.md index 73b855a63c..106e86cd1b 100644 --- a/Document-Processing/Word/Word-Processor/vue/how-to/change-the-default-search-highlight-color.md +++ b/Document-Processing/Word/Word-Processor/vue/how-to/change-the-default-search-highlight-color.md @@ -1,18 +1,18 @@ --- layout: post -title: Change the default search highlight color in Vue Document editor component | Syncfusion -description: Learn here all about Change the default search highlight color in Syncfusion Vue Document editor component of Syncfusion Essential JS 2 and more. -control: Change the default search highlight color +title: Change search highlight color in Vue DOCX Editor | Syncfusion +description: Learn here all about how to change the default search highlight color in the Syncfusion Vue Document Editor component of Syncfusion Essential JS 2 and more. +control: Change the default search highlight color platform: document-processing documentation: ug domainurl: ##DomainURL## --- -# Change the default search highlight color in Vue Document editor component +# Change search highlight color in Vue Document Editor -[Vue DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/vue-docx-editor) (Document Editor) provides an options to change the default search highlight color using [`searchHighlightColor`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/documentEditorSettingsModel#searchhighlightcolor) in Document editor settings. The highlight color which is given in [`documentEditorSettings`](https://ej2.syncfusion.com/vue/documentation/api/document-editor-container#documenteditorsettings) will be highlighted on the searched text. By default, search highlight color is `yellow`. +[Vue DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/vue-docx-editor) (Document Editor) provides an option to change the default search highlight color using [`searchHighlightColor`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/documentEditorSettingsModel#searchhighlightcolor) in Document Editor settings. The highlight color specified in [`documentEditorSettings`](https://ej2.syncfusion.com/vue/documentation/api/document-editor-container#documenteditorsettings) will be highlighted on the searched text. By default, the search highlight color is `yellow`. -Similarly, you can use [`documentEditorSettings`](https://ej2.syncfusion.com/vue/documentation/api/document-editor#documenteditorsettings) property for DocumentEditor also. +Similarly, you can use the [`documentEditorSettings`](https://ej2.syncfusion.com/vue/documentation/api/document-editor#documenteditorsettings) property for the DocumentEditor also. The following example code illustrates how to change the default search highlight color. @@ -33,7 +33,7 @@ const serviceUrl = 'https://document.syncfusion.com/web-services/docx-editor/api // Add required color to change the default search highlight color const settings = { searchHighlightColor: 'Grey' } -//Inject require modules. +//Inject required modules. provide('DocumentEditorContainer', [Toolbar]) @@ -62,7 +62,7 @@ export default { } }, provide: { - //Inject require modules. + //Inject required modules. DocumentEditorContainer: [Toolbar] } } @@ -71,8 +71,8 @@ export default { {% endhighlight %} {% endtabs %} -> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. +N> The Web API hosted link `https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/` utilized in the Document Editor's serviceUrl property is intended solely for demonstration and evaluation purposes. For production deployment, please host your own web service with your required server configurations. You can refer and reuse the [GitHub Web Service example](https://github.com/SyncfusionExamples/EJ2-DocumentEditor-WebServices) or [Docker image](https://hub.docker.com/r/syncfusion/word-processor-server) for hosting your own web service and use for the serviceUrl property. -Output will be like below: +The output will be as shown below: ![How to change the default search highlight color](../images/search-color.png) \ No newline at end of file diff --git a/Document-Processing/Word/Word-Processor/vue/how-to/customize-color-picker.md b/Document-Processing/Word/Word-Processor/vue/how-to/customize-color-picker.md index 459733f839..1c834778a6 100644 --- a/Document-Processing/Word/Word-Processor/vue/how-to/customize-color-picker.md +++ b/Document-Processing/Word/Word-Processor/vue/how-to/customize-color-picker.md @@ -1,20 +1,20 @@ --- layout: post -title: Customize color picker in Vue Document editor | Syncfusion -description: Learn here all about Customize color picker in Syncfusion Vue Document editor component of Syncfusion Essential JS 2 and more. +title: Customize the color picker in the Vue DOCX Editor | Syncfusion +description: Learn here all about how to customize the color picker in the Syncfusion Vue Document Editor component of Syncfusion Essential JS 2 and more. control: Customize color picker platform: document-processing documentation: ug domainurl: ##DomainURL## --- -# Customize color picker in Vue Document editor component +# Customize the color picker in the Vue Document Editor component -[Vue DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/vue-docx-editor) (Document Editor) provides an options to customize the color picker using [`colorPickerSettings`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/documentEditorSettingsModel#colorpickersettings)in the document editor settings. The color picker offers customization options for default appearance, by allowing selection between Picker or Palette mode, for font and border colors." +[Vue DOCX Editor](https://www.syncfusion.com/docx-editor-sdk/vue-docx-editor) (Document Editor) provides an option to customize the color picker using [`colorPickerSettings`](https://ej2.syncfusion.com/vue/documentation/api/document-editor/documentEditorSettingsModel#colorpickersettings) in the Document Editor settings. The color picker offers customization options for the default appearance by allowing selection between Picker or Palette mode for font and border colors. -Similarly, you can use [`documentEditorSettings`](https://ej2.syncfusion.com/vue/documentation/api/document-editor#documenteditorsettings) property for DocumentEditor also. +Similarly, you can use the [`documentEditorSettings`](https://ej2.syncfusion.com/vue/documentation/api/document-editor#documenteditorsettings) property for the DocumentEditor also. -The following example code illustrates how to Customize the color picker in Document editor container. +The following example code illustrates how to customize the color picker in the Document Editor container. ```