Skip to main content
A newer version of this page is available. .

ASPxRichEditAutoCorrectSettings.ReplaceTextAsYouType Property

Gets or sets whether the control should replace the typed text if it matches to one of the ASPxRichEditAutoCorrectReplaceInfoCollection dictionary’s entries.

Namespace: DevExpress.Web.ASPxRichEdit

Assembly: DevExpress.Web.ASPxRichEdit.v20.2.dll

NuGet Package: DevExpress.Web.Office

Declaration

[DefaultValue(false)]
public override bool ReplaceTextAsYouType { get; set; }

Property Value

Type Default Description
Boolean **false**

true, to switch this functionality on; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to ReplaceTextAsYouType
ASPxRichEditSettings
.AutoCorrect .ReplaceTextAsYouType

Remarks

When the property is set to true, the control compares the typed text with the ASPxRichEditAutoCorrectReplaceInfo.What value of each ASPxRichEditAutoCorrectReplaceInfoCollectionSettings.AutoCorrectReplaceInfoCollection collection’s entry. If there is a match, the control replace the typed text with the matched entry’s ASPxRichEditAutoCorrectReplaceInfo.With value.

You can enable/disable case-sensitive search through the collection’s entries by specifying the ASPxRichEditAutoCorrectReplaceInfoCollectionSettings.CaseSensitive property to true/false respectively.

See Also