aspnetcore-js-devexpress-dot-richedit-cee1e471.md
Contains data for the AutoCorrect event.
export class AutoCorrectEventArgs extends EventArgs
The AutoCorrect event occurs when text is typed in the control. The event handler receives an argument of the AutoCorrectEventArgs type. The argument’s properties provide information specific to this event.
EventArgs AutoCorrectEventArgs
Specifies whether the event is handled.
handled: boolean
| Type | Description |
|---|---|
| boolean |
true , if the event is handled and further processing is not required; otherwise false.
|
Set the handled to true when the event processing is finished for the current input string.
Gets the input string’s interval.
interval: Interval
| Type | Description |
|---|---|
| Interval |
The input string’s interval.
|
Use the interval property to select the input string and replace it.
Gets the input string to check whether it should be replaced.
text: string
| Type | Description |
|---|---|
| string |
A string that can be replaced.
|