Suggestion display mode
29 Jun 2018 / 1 minute to read
The ComboBoxMode
property is used to decide the suggestion pattern for displaying the dropdown list according to the text entered. The different types of patterns are, described below
-
Suggest
-
Append
-
Suggest and Append
NOTE
The default option is suggest mode.
Suggest in drop-down
- Suggest - Displays suggestions in the drop-down.
combobox.ComboBoxMode = ComboBoxMode.Suggest;
Append
- Append - Appends the first matching string with the entered character.
combobox.ComboBoxMode = ComboBoxMode.Append;
Both append and suggest in drop-down
- SuggestAppend - Displays suggestions in the drop-down along with appending the first matching string.
combobox.ComboBoxMode = ComboBoxMode.SuggestAppend;
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page