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

RepositoryItemComboBox.CaseSensitiveSearch Property

Gets or sets a value indicating whether the auto completion feature is case sensitive.

Namespace: DevExpress.XtraEditors.Repository

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

[DXCategory("Behavior")]
[DefaultValue(false)]
public virtual bool CaseSensitiveSearch { get; set; }

Property Value

Type Default Description
Boolean **false**

true if the auto completion feature is case sensitive, otherwise false.

Remarks

The auto completion feature enables the end-user to locate items from the dropdown list by typing their starting characters in the edit box. The CaseSensitiveSearch property specifies whether the combobox should distinguish between upper and lower case characters while looking for the matching item. If the property is set to true, the end-user has to type characters that match the case in order to select an item.

To enable the auto completion feature, set the RepositoryItemComboBox.AutoComplete property to true.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the CaseSensitiveSearch property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also