Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

IAutocorrectSettings Interface

Declares autocorrect settings.

#Declaration

TypeScript
export interface IAutocorrectSettings

#Properties

#caseSensitiveReplacement Property

Specifies whether to apply a case-sensitive string comparison when searching through the replacement collection’s items.

#Declaration

TypeScript
caseSensitiveReplacement?: boolean

#Property Value

Type Description
boolean

true, for case-sensitive comparison; otherwise, false.

#correctTwoInitialCapitals Property

Specifies whether the control should change the second letter to lowercase when a word starts with two capital letters.

#Declaration

TypeScript
correctTwoInitialCapitals?: boolean

#Property Value

Type Description
boolean

true to correct the second letter; otherwise, false.

#detectUrls Property

Specifies whether the control should detect URL strings and format them as hyperlinks.

#Declaration

TypeScript
detectUrls?: boolean

#Property Value

Type Description
boolean

true to format URL strings as hyperlinks; otherwise, false.

#enableAutomaticNumbering Property

Specifies whether the control should automatically create numbered or bulleted lists when certain symbols are typed.

#Declaration

TypeScript
enableAutomaticNumbering?: boolean

#Property Value

Type Description
boolean

true to create lists; otherwise, false.

#Remarks

When the property is set to true, the Rich Text Editor behaves as follows.

  • The control starts a numbered list when a user types “1.” or “1)”.
  • The control starts a bulleted list when a user types “*”.

#replaceInfoCollection Property

Specifies a collection of replacements.

#Declaration

TypeScript
replaceInfoCollection?: IAutocorrectReplaceInfo[]

#Property Value

Type Description
IAutocorrectReplaceInfo[]

An array of objects that contain replacement settings.

#replaceTextAsYouType Property

Specifies whether the control should replace the typed text if it matches to one of the replacement collection’s items.

#Declaration

TypeScript
replaceTextAsYouType?: boolean

#Property Value

Type Description
boolean

true to replace the typed text; otherwise, false.