Skip to main content

LookUpEditBase.IsCaseSensitiveSearch Property

Gets or sets whether the automatic completion and filtering are case sensitive. This is a dependency property.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v14.2.dll

#Declaration

public bool IsCaseSensitiveSearch { get; set; }

#Property Value

Type Description
Boolean

true if the automatic completion and filtering are case sensitive, otherwise false.

#Remarks

The Automatic Completion feature allows an end-user to locate items from the dropdown list by typing their starting characters in the edit box. If the filtering is enabled, the dropdown list displays only items which start with the characters typed by an end-user. The IsCaseSensitiveSearch property specifies whether the editor should distinguish between upper and lower case characters while looking for the matching item. If this property is set to true, an end-user has to type characters that match the case, to select the required item.

To enable the automatic completion and incremental filtering , set the LookUpEditBase.AutoComplete and LookUpEditBase.IncrementalFiltering properties to true.

See Also