Skip to main content
.NET 6.0+

XPView.CaseSensitive Property

Gets or sets whether string comparisons evaluated by the XPView on the client are case-sensitive.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public bool CaseSensitive { get; set; }

Property Value

Type Description
Boolean

true if string comparisons are case-sensitive; otherwise, false.

Remarks

If the CaseSensitive property is set to true sorting and filtering operations performed on the client are case-sensitive (if they involve string comparison operations). Otherwise, they are not.

To specify the sorting and filtering rules use the XPView.Sorting and XPView.Filter properties, respectively.

Note

If the CaseSensitive property is not specified, the corresponding setting is obtained from the XPView.Session used for the current XPView (see Session.CaseSensitive).

See Also