GrapeCity.Win.MultiRow Namespace > ComboBoxCell Class : AutoCompleteMode Property |
<SRDescriptionAttribute("Indicates the text completion behavior of the ComboBoxCell.")> <DefaultValueAttribute()> <SRCategoryAttribute("Behavior")> Public Property AutoCompleteMode As AutoCompleteMode
Dim instance As ComboBoxCell Dim value As AutoCompleteMode instance.AutoCompleteMode = value value = instance.AutoCompleteMode
[SRDescription("Indicates the text completion behavior of the ComboBoxCell.")] [DefaultValue()] [SRCategory("Behavior")] public AutoCompleteMode AutoCompleteMode {get; set;}
One of the System.Windows.Forms.AutoCompleteMode values. The default is System.Windows.Forms.AutoCompleteMode.None.
Exception | Description |
---|---|
System.ComponentModel.InvalidEnumArgumentException | The assigned value is not one of the System.Windows.Forms.AutoCompleteMode values. |
ComboBoxCell CreateAutoCompleteComboBoxCell() { ComboBoxCell comboBoxCell = new ComboBoxCell(); comboBoxCell.DropDownStyle = MultiRowComboBoxStyle.DropDown; comboBoxCell.AutoCompleteMode = AutoCompleteMode.SuggestAppend; comboBoxCell.AutoCompleteSource = AutoCompleteSource.CustomSource; string[] customSourceItems = new string[] { "aaa", "bbb", "ccc", "ddd" }; comboBoxCell.AutoCompleteCustomSource.AddRange(customSourceItems); comboBoxCell.Items.AddRange("(none)", "aaa", "bbb", "ccc", "ddd"); return comboBoxCell; }
Private Function CreateAutoCompleteComboBoxCell() As ComboBoxCell Dim comboBoxCell As New ComboBoxCell() comboBoxCell.DropDownStyle = MultiRowComboBoxStyle.DropDown comboBoxCell.AutoCompleteMode = AutoCompleteMode.SuggestAppend comboBoxCell.AutoCompleteSource = AutoCompleteSource.CustomSource Dim customSourceItems As String() = New String() {"aaa", "bbb", "ccc", "ddd"} comboBoxCell.AutoCompleteCustomSource.AddRange(customSourceItems) comboBoxCell.Items.AddRange("(none)", "aaa", "bbb", "ccc", "ddd") Return comboBoxCell End Function
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2