aspnetcore-js-devexpress-dot-richedit-7c69d355.md
Declares autocorrect settings.
export interface IAutocorrectSettings
Specifies whether to apply a case-sensitive string comparison when searching through the replacement collection’s items.
caseSensitiveReplacement?: boolean
| Type | Description |
|---|---|
| boolean |
true , for case-sensitive comparison; otherwise, false.
|
Specifies whether the control should change the second letter to lowercase when a word starts with two capital letters.
correctTwoInitialCapitals?: boolean
| Type | Description |
|---|---|
| boolean |
true to correct the second letter; otherwise, false.
|
Specifies whether the control should detect URL strings and format them as hyperlinks.
detectUrls?: boolean
| Type | Description |
|---|---|
| boolean |
true to format URL strings as hyperlinks; otherwise, false.
|
Specifies whether the control should automatically create numbered or bulleted lists when certain symbols are typed.
enableAutomaticNumbering?: boolean
| Type | Description |
|---|---|
| boolean |
true to create lists; otherwise, false.
|
When the property is set to true, the Rich Text Editor behaves as follows.
Specifies a collection of replacements.
replaceInfoCollection?: IAutocorrectReplaceInfo[]
| Type | Description |
|---|---|
| IAutocorrectReplaceInfo[] |
An array of objects that contain replacement settings.
|
Specifies whether the control should replace the typed text if it matches to one of the replacement collection’s items.
replaceTextAsYouType?: boolean
| Type | Description |
|---|---|
| boolean |
true to replace the typed text; otherwise, false.
|