GrapeCity CalendarGrid for Windows Forms 2.0J
AutoCompleteMode プロパティ (CalendarComboBoxCellType)
使用例 

CalendarComboBoxCellType でのオートコンプリートの動作を制御するオプションを取得または設定します(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 以外の値に変更すると、その CalendarComboBoxCellTypeDropDownStyle は自動的に CalendarGridComboBoxStyle.DropDown に変更されます。

例外
例外解説
System.ComponentModel.InvalidEnumArgumentException指定された値が System.Windows.Forms.AutoCompleteMode 値の 1 つではありません。
解説
System.Windows.Forms.ComboBox.AutoCompleteMode の解説を参照してください。
使用例
次のサンプルコードは、ComboBox 型セルの動作または外観をカスタマイズする方法を示します。このサンプルコードは、CalendarComboBoxCellType クラスに示されている詳細なコード例の一部を抜粋したものです。
CalendarComboBoxCellType CreateAutoCompleteComboBoxCell()
{
    CalendarComboBoxCellType comboBoxCell = new CalendarComboBoxCellType();

    comboBoxCell.DropDownStyle = CalendarGridComboBoxStyle.DropDown;
    comboBoxCell.AutoCompleteMode = AutoCompleteMode.SuggestAppend;
    comboBoxCell.AutoCompleteSource = AutoCompleteSource.CustomSource;
    string[] customSourceItems = new string[] { "aaa", "bbb", "ccc", "ddd" };
    comboBoxCell.AutoCompleteCustomSource.AddRange(customSourceItems);

    comboBoxCell.Items.Add("(none)");
    comboBoxCell.Items.Add("aaa");
    comboBoxCell.Items.Add("bbb");
    comboBoxCell.Items.Add("ccc");
    comboBoxCell.Items.Add("ddd");

    return comboBoxCell;
}
Private Function CreateAutoCompleteComboBoxCell() As CalendarComboBoxCellType
    Dim comboBoxCell As New CalendarComboBoxCellType()

    comboBoxCell.DropDownStyle = CalendarGridComboBoxStyle.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.Add("(none)")
    comboBoxCell.Items.Add("aaa")
    comboBoxCell.Items.Add("bbb")
    comboBoxCell.Items.Add("ccc")
    comboBoxCell.Items.Add("ddd")

    Return comboBoxCell
End Function
参照

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

 

 


c 2008 GrapeCity inc. All rights reserved.