MultiSelect for WinForms
AutoSuggestMode プロパティ (C1ComboBox)
使用例 

C1.Win.C1Input.4.5.2 アセンブリ > C1.Win.C1Input 名前空間 > C1ComboBox クラス : AutoSuggestMode プロパティ
Gets or sets an option that controls how candidates searching works in auto-suggest mode.
シンタックス
'宣言
 
Public Property AutoSuggestMode As AutoSuggestMode
public AutoSuggestMode AutoSuggestMode {get; set;}
解説

AutoSuggestMode works together with System.Windows.Forms.TextBox.AutoCompleteMode and System.Windows.Forms.TextBox.AutoCompleteSource properties. The AutoSuggestMode works only if CustomSource"/> or ListItems value is used in System.Windows.Forms.TextBox.AutoCompleteSource. The property does not have any effect if System.Windows.Forms.TextBox.AutoCompleteSource is any of AllSystemSources, AllUrl, FileSystem, FileSystemDirectories, HistoryList, None, RecentlyUsedList, HistoryList. The property does not have any effect if System.Windows.Forms.TextBox.AutoCompleteMode is any of Node or Append.

Items in Auto-Suggest mode are shown without images and formatting as a plain text.

C1ComboBox enters in Auto-Suggest mode when user types a character sequence that matches the filtering criteria.

使用例
This sample shows how to use the AutoSuggestMode property.
C1ComboBox comboBox = new C1ComboBox();
comboBox.AutoCompleteMode = AutoCompleteMode.Suggest;
comboBox.AutoCompleteSource = AutoCompleteSource.ListItems;
comboBox.AutoSuggestMode = AutoSuggestMode.Contains;
comboBox.Items.AddRange(new string[]
                   {
                       "January",
                       "February",
                       "March",
                       "April",
                       "May",
                       "June",
                       "July",
                       "August",
                       "September",
                       "October",
                       "November",
                       "December"
                   });
参照

C1ComboBox クラス
C1ComboBox メンバ