Document editor provides an options to change the default search highlight color using searchHighlightColor
in Document editor settings. The highlight color which is given in documentEditorSettings
will be highlighted on the searched text. By default, search highlight color is yellow
.
Similarly, you can use documentEditorSettings
property for DocumentEditor also.
The following example code illustrates how to change the default search highlight color.
import * as ReactDOM from 'react-dom';
import * as React from 'react';
import {
DocumentEditorContainerComponent,
Toolbar,
} from '@syncfusion/ej2-react-documenteditor';
DocumentEditorContainerComponent.Inject(Toolbar);
export class App extends React.Component<{}, {}> {
// Add required color to change the default search highlight color
public searchHighlightColor = {
searchHighlightColor: 'Grey'
};
render() {
return (
<DocumentEditorContainerComponent
id="container"
height={'590px'}
serviceUrl="https://ej2services.syncfusion.com/production/web-services/api/documenteditor/"
enableToolbar={true}
documentEditorSettings={this.searchHighlightColor}
/>
);
}
}
ReactDOM.render(<App />, document.getElementById('root'));
Output will be like below: