Skip to main content

LookUpEditBase.IsCaseSensitiveSearch Property

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

Namespace: DevExpress.Xpf.Editors

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

NuGet Package: DevExpress.Wpf.Core

Declaration

public bool IsCaseSensitiveSearch { get; set; }

Property Value

Type Description
Boolean

true if the automatic completion is case sensitive, otherwise false.

Remarks

When the Automatic Completion feature is enabled, the text typed by an end-user within the edit box is automatically completed if it matches a value displayed within the dropdown. 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, set the LookUpEditBase.AutoComplete and property to true.

See Also