wpf-devexpress-dot-xpf-dot-editors-dot-lookupeditbase-d6c9ace2.md
Gets or sets whether the automatic completion is case sensitive. This is a dependency property.
Namespace : DevExpress.Xpf.Editors
Assembly : DevExpress.Xpf.Core.v25.2.dll
NuGet Package : DevExpress.Wpf.Core
public bool IsCaseSensitiveSearch { get; set; }
Public Property IsCaseSensitiveSearch As Boolean
| Type | Description |
|---|---|
| Boolean |
true if the automatic completion is case sensitive, otherwise, false.
|
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