corelibraries-devexpress-dot-xtraspellchecker-dot-optionsspellingbase-f10b70a7.md
Gets or sets whether the spell checker ignores strings which can be qualified as Uniform Resource Identifiers (URI).
Namespace : DevExpress.XtraSpellChecker
Assembly : DevExpress.SpellChecker.v25.2.Core.dll
NuGet Package : DevExpress.SpellChecker.Core
[DefaultValue(DefaultBoolean.Default)]
public virtual DefaultBoolean IgnoreUri { get; set; }
<DefaultValue(DefaultBoolean.Default)>
Public Overridable Property IgnoreUri As DefaultBoolean
| 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 | Return Value |
|---|---|---|
| True |
The value is true.
|
0
| | False |
The value is false.
|
1
| | Default |
The value is specified by a global option or a higher-level object.
|
2
|
You can access this nested property as listed below:
| Object Type | Path to IgnoreUri |
|---|---|
| SpellCheckerBase |
.OptionsSpelling .IgnoreUri
|
With the IgnoreUri option set to DefaultBoolean.True, you can save time by skipping URIs during a spell check.
See Also