Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

RichEditBehaviorOptions.OvertypeAllowed Property

Specifies whether or not the overtype mode is allowed.

Namespace: DevExpress.XtraRichEdit

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

Declaration

[DefaultValue(true)]
public virtual bool OvertypeAllowed { get; set; }

Property Value

Type Default Description
Boolean **true**

true if the overtype is allowed; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to OvertypeAllowed
WinForms Controls SnapControlOptions
.Behavior.OvertypeAllowed
RepositoryItemRichTextEdit
.OptionsBehavior.OvertypeAllowed
RichEditControlOptions
.Behavior.OvertypeAllowed
WPF Controls RichEditControlOptions
.Behavior.OvertypeAllowed
Office File API RichEditControlOptionsBase
.Behavior.OvertypeAllowed
ASP.NET Web Forms Controls ASPxRichEditSettings
.Behavior.OvertypeAllowed

Remarks

In the overtype mode, typing new characters replaces any existing characters to the right side of the insertion point.

Setting the OvertypeAllowed to false disables using the Insert key to control the overtype mode. The property has no effect if the overtype mode is enabled in code (i.e, if the RichEditControl.Overtype or RichEditControl.Overtype property is set to true).

See Also