Enum ComboSuggest
Which mode to apply when typing text in the combo box's textbox?
Namespace: AGS.API
Assembly: AGS.API.dll
Syntax
public enum ComboSuggest
Fields
Name | Description |
---|---|
Enforce | User can type in the textbox to filter the options in the combobox, but the user does not have the ability to type text which is not part of the combobox options (best for comboboxes with a lot of options). |
None | The textbox is disabled, combobox selection must be made with the drop-down alone (best for comboboxes with a small number of options). |
Suggest | User gets suggestions when typing in the textbox (based on the combobox items), however those are only suggestions, and the user is free to type text which is not part of the combobox options. An example where this can be used is in a color selector, where you have a list of available colors (in the dropdown) but also the ability to type RGB values directly. |