Properties
- AutoCompleteMode - Determines how the ComboBox automatically completes typed text.
- AutoPostBack - Determines whether or not AutoPostBack should be used.
- BackColor - A background color.
- BorderColor - The ComboBox border color.
- BorderStyle - The ComboBox border style.
- BorderWidth - The ComboBox border width.
- CaseSensitive - Specifies whether or not user-typed text matches items in the list in a case-sensitive manner. The default is false.
- DropDownStyle - Determines whether or not a user is allowed to enter text that does not match an item in the list and if the list is always displayed.
- Enabled - Determines whether or not the ComboBox is enabled.
- Font - The ComboBox control font.
- ForeColor - A foreground color.
- Height - ComboBox height.
- ItemInsertLocation - Determines if to "Append" or "Prepend" new items when they are inserted into the list or insert them in an "Ordinal" manner (alphabetically) based on the item Text or Value. The default is "Append"
- ListItemHoverCssClass - When specified, replaces default styles applied to highlighted items in the list with a custom css class.
- MaxLength - Specifies maximum length of the associated TextBox control.
- RenderMode - Specifies whether or not the ComboBox is rendered as an Inline or Block level HTML element. The default is Inline.
- SelectedIndex - The ComboBox selected item index.
- TabIndex - The ComboBox tab index.
- Width - ComboBox width.
Methods
- RaisePostDataChangedEvent() - Raises PostDataChangeEvent.
- RenderControl(writer) - Renders a control.
- ResolveControl(controlId) - Resolves a control
Events
- ItemInserted - Fires when an item is inserted.
- ItemInserting - Fires on inserting an item.