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

OptionsSpelling.IgnoreUrls Property

OBSOLETE

This property has become obsolete. Use the IgnoreUri property instead.

Gets or sets whether the spell checker ignores the URLs in text.

Namespace: DevExpress.Xpf.SpellChecker

Assembly: DevExpress.Xpf.SpellChecker.v19.1.dll

Declaration

[Obsolete("This property has become obsolete. Use the IgnoreUri property instead.")]
[Browsable(false)]
public override DefaultBoolean IgnoreUrls { get; set; }

Property Value

Type Description
DefaultBoolean

A DefaultBoolean enumeration value specifying whether the words which are URLs should be checked.

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:

Object Type Path to IgnoreUrls
SpellChecker
.OptionsSpelling.IgnoreUrls

Remarks

A word that has one of the following prefixes: “http”, “ftp”, “https”, “www” is presumed to be an Uniform Resource Locator (URL). With IgnoreUrls set to DefaultBoolean.True you can save time by ignoring URL addresses during a spelling check.

See Also