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

AutoCorrectReplaceInfoCollection Class

A collection of AutoCorrectReplaceInfo objects.

Namespace: DevExpress.XtraRichEdit

Assembly: DevExpress.RichEdit.v24.2.Core.dll

NuGet Package: DevExpress.RichEdit.Core

#Declaration

[ComVisible(true)]
public class AutoCorrectReplaceInfoCollection

#Remarks

The AutoCorrectReplaceInfoCollection collection contains AutoCorrectReplaceInfo objects. Each object is composed of the key accessible by the AutoCorrectReplaceInfo.What property and the value accessible by the AutoCorrectReplaceInfo.With property. It specifies a string and its replacement - a string or a picture. A search for the key in the collection can be case-sensitive or not - use the AutoCorrectReplaceInfoCollection.CaseSensitive property to set the desired option.

Create a AutoCorrectReplaceInfo instance and add to the collection using the AutoCorrectReplaceInfoCollection.Add method to build a replacement table. When the replacement table is ready, use the IAutoCorrectService.SetReplaceTable method to specify an AutoCorrectReplaceInfoCollection for use in table-based autoreplacement.

#Inheritance

Object
AutoCorrectReplaceInfoCollection
See Also