RuleStringComparisonProperties.OperatorType Property
Specifies the operator type that must be used when comparing string values.
Namespace: DevExpress.Persistent.Validation
Assembly:
DevExpress.Persistent.Base.v25.2.dll
NuGet Package:
DevExpress.Persistent.Base
Declaration
[RulePropertiesIndex(0)]
public StringComparisonType OperatorType { get; set; }
<RulePropertiesIndex(0)>
Public Property OperatorType As StringComparisonType
Property Value
Available values:
| Name |
Description |
|
Contains
|
Specifies that the target string property’s value must contain a particular substring.
|
|
EndsWith
|
Specifies that the target string property’s value must end with a particular substring.
|
|
Equals
|
Specifies that the target string property’s value must equal a particular string.
|
|
NotEquals
|
Specifies that the target string property’s value must not equal a particular string.
|
|
StartsWith
|
Specifies that the target string property’s value must start with a particular substring.
|
See Also