Skip to main content

DXRichEditSpellCheckerOptions.IgnoreNoProof Property

Gets or sets whether the spell checker should ignore “no-proof” settings for text ranges in a document. This is a dependency property.

Namespace: DevExpress.Xpf.RichEdit

Assembly: DevExpress.Xpf.RichEdit.v23.2.dll

NuGet Package: DevExpress.Wpf.RichEdit

Declaration

public bool IgnoreNoProof { get; set; }

Property Value

Type Description
Boolean

true, to ignore “no-proof” settings; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to IgnoreNoProof
RichEditControl
.SpellCheckerOptions .IgnoreNoProof

Remarks

A document may contain text marked as “no-proof”. This means that the contents of this range should not be checked by spelling and grammar proofing tools.

You can use the CharacterPropertiesBase.NoProof property to specify this option in code.

When the IgnoreNoProof is set to true, the spell checker will report errors for all text ranges being checked even if some of them are indicated as “no-proof”. In other words, no part of the document can avoid spelling check.

See Also