Returns or sets whether string searches in the ImageCombo list are case sensitive.
Syntax
object.CaseSensitive [= boolean]
The CaseSensitive property syntax has these parts:
Part | Description |
object | An object expression that evaluates to an object in the Applies To list. |
boolean | A Boolean expression specifying whether the case of the search string will affect the search results, as described in Settings. |
Settings
The settings for boolean are:
Setting | Description |
True | The items in the list box are sorted and/or searched in a case-sensitive manner. |
False | (Default) The items in the list box are sorted and/or searched without regard to case. |
Remarks
The CaseSensitive property determines how items in the list portion of the ImageCombo are treated during search operations. The contents of the list are searched as the user enters text into the text box of the control. For example, suppose there are two items in the list, an "AAA" item and an "Aaa". The user then types "Aa" in the edit portion of the combo. If CaseSensitive is set to True, the "Aaa" item is selected. If CaseSensitive is set to False, the "AAA" item is selected.