aspnet-devexpress-dot-web-dot-aspxrichedit-dot-aspxricheditautocorrectsettings.md
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.v25.2.dll
NuGet Package : DevExpress.Web.Office
[DefaultValue(false)]
public override bool ReplaceTextAsYouType { get; set; }
<DefaultValue(False)>
Public Overrides Property ReplaceTextAsYouType As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true, to switch this functionality on; otherwise, false.
|
You can access this nested property as listed below:
| Object Type | Path to ReplaceTextAsYouType |
|---|---|
| ASPxRichEditSettings |
.AutoCorrect .ReplaceTextAsYouType
|
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
ASPxRichEditAutoCorrectSettings Class