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

RuleStringComparisonAttribute.IgnoreCase Property

Specifies whether to perfom a case-sensitive comparison.

Namespace: DevExpress.Persistent.Validation

Assembly: DevExpress.Persistent.Base.v18.2.dll

Declaration

public bool IgnoreCase { get; set; }

Property Value

Type Description
Boolean

true if a case-insensitive comparison will be performed; otherwise, false.

Remarks

By default, this property is set to false.

Note

When defining the RuleStringComparisonAttribute in code, the value for the IgnoreCase property is passed as a named parameter. This means that you do not have to specify it. However, when specifying, use the following format: IgnoreCase = true (IgnoreCase := True, in Visual Basic).

See Also