ContainmentComparisonType Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The ContainmentComparisonType enumeration indicates whether the search ignores casing and spaces.
public enum class ContainmentComparisonType
public enum ContainmentComparisonType
Public Enum ContainmentComparisonType
- Inheritance
-
ContainmentComparisonType
Fields
Name | Value | Description |
---|---|---|
Exact | 0 | Specifies that the comparison must be exact. |
IgnoreCase | 1 | Specifies that the comparison ignores casing. |
IgnoreNonSpacingCharacters | 2 | Specifies that the comparison ignores non-spacing characters. |
Loose | 3 | To be removed. |
IgnoreCaseAndNonSpacingCharacters | 4 | Specifies that the comparison ignores casing and non-spacing characters. |
LooseAndIgnoreCase | 5 | To be removed. |
LooseAndIgnoreNonSpace | 6 | To be removed. |
LooseAndIgnoreCaseAndIgnoreNonSpace | 7 | To be removed. |
Remarks
This enumeration is used by the ContainmentComparison property of the ContainsExpressionType object.