PowerTools MultiRow for Windows Forms 8.0J
AutoCompleteMode プロパティ (ComboBoxCell)
使用例 

ComboBoxCellにおけるオートコンプリートの動作を制御するオプションを取得または設定します(System.Windows.Forms.ComboBox.AutoCompleteModeを参照)。
構文
Public Property AutoCompleteMode As AutoCompleteMode
public AutoCompleteMode AutoCompleteMode {get; set;}

プロパティ値

System.Windows.Forms.AutoCompleteMode値の1つ。既定値はSystem.Windows.Forms.AutoCompleteMode.Noneです。

AutoCompleteSourceプロパティがSystem.Windows.Forms.AutoCompleteSource.ListItemsでない場合、AutoCompleteModeプロパティをSystem.Windows.Forms.AutoCompleteMode.None以外の値に変更すると、そのComboBoxCellDropDownStyleは自動的にMultiRowComboBoxStyle.DropDownに変更されます。

例外
例外解説
System.ComponentModel.InvalidEnumArgumentException指定された値がSystem.Windows.Forms.AutoCompleteMode値の1つではありません。
解説
System.Windows.Forms.ComboBox.AutoCompleteModeの解説を参照してください。
使用例
次のサンプルコードは、コンボボックス型セルの動作または外観をカスタマイズする方法を示します。このサンプルコードは、ComboBoxCellクラスに示されている詳細なコード例の一部を抜粋したものです。
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
参照

ComboBoxCell クラス
ComboBoxCell メンバ
DataSource プロパティ
Items プロパティ
AutoCompleteCustomSource プロパティ
AutoCompleteSource プロパティ

 

 


© 2008-2015 GrapeCity inc. All rights reserved.