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

OptionsSpellingBase.IgnoreUri Property

Gets or sets whether the spell checker ignores strings which can be qualified as Uniform Resource Identifiers (URI).

Namespace: DevExpress.XtraSpellChecker

Assembly: DevExpress.SpellChecker.v18.2.Core.dll

Declaration

[XtraSerializableProperty]
[DefaultValue(DefaultBoolean.Default)]
public virtual DefaultBoolean IgnoreUri { get; set; }

Property Value

Type Default Description
DefaultBoolean **Default**

A DefaultBoolean enumeration value specifying whether the strings which are URIs should be checked. When the IgnoreUri property is set to DefaultBoolean.True or DefaultBoolean.Default, the spell checker skips URI strings.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Property Paths

You can access this nested property as listed below:

Library Object Type Path to IgnoreUri
Cross-Platform Class Library SpellCheckerBase
.OptionsSpelling.IgnoreUri
WinForms Controls SpellChecker
.OptionsSpelling.IgnoreUri
WPF Controls SpellChecker
.OptionsSpelling.IgnoreUri

Remarks

With the IgnoreUri option set to DefaultBoolean.True, you can save time by skipping URIs during a spell check.

See Also