GrapeCity SPREAD for Windows Forms 11.0J
AutoCompleteMode プロパティ (GcComboBoxCellType)


GcComboBoxセルのオートコンプリートの動作を制御するオプションを取得または設定します。
構文
'Declaration
 
Public Property AutoCompleteMode As AutoCompleteMode
'使用法
 
Dim instance As GcComboBoxCellType
Dim value As AutoCompleteMode
 
instance.AutoCompleteMode = value
 
value = instance.AutoCompleteMode
public AutoCompleteMode AutoCompleteMode {get; set;}

プロパティ値

AutoCompleteMode値の1つ。System.Windows.Forms.AutoCompleteMode.AppendSystem.Windows.Forms.AutoCompleteMode.SuggestSystem.Windows.Forms.AutoCompleteMode.SuggestAppendSystem.Windows.Forms.AutoCompleteMode.Noneのいずれかを指定します。デフォルト値はSystem.Windows.Forms.AutoCompleteMode.Noneです。
解説

AutoCompleteCustomSourceAutoCompleteModeAutoCompleteSourceの各プロパティを使用して、入力された文字列をあらかじめ用意したすべての文字列と前方一致で比較することによって入力文字列を自動的に補完するGcComboBoxを作成できます。これは、GcTextBoxコントロールにURL、アドレス、ファイル名、コマンドなどを入力する場合に役立ちます。

AutoCompleteCustomSourceプロパティは任意ですが、AutoCompleteCustomSourceを使用するためには、AutoCompleteSourceプロパティをCustomSourceに設定する必要があります。

AutoCompleteModeプロパティとAutoCompleteSourceプロパティは組み合わせて使用する必要があります。

次のサンプルコードは、カスタムソースを作成します。
AutoCompleteStringCollection acsc = new AutoCompleteStringCollection();
acsc.AddRange(new string[] { "Gouda", "Swiss", "Brie" });

GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType gccombo = new GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType();
gccombo.Items.Add("Gouda");
gccombo.Items.Add("Swiss");
gccombo.Items.Add("Brie");
gccombo.AutoCompleteCustomSource = acsc;
gccombo.AutoCompleteMode = AutoCompleteMode.Suggest;
gccombo.AutoCompleteSource = AutoCompleteSource.CustomSource;
fpSpread1.Sheets[0].Cells[0, 0].CellType = gccombo;
Dim acsc = New AutoCompleteStringCollection()
acsc.AddRange(New String() {"Gouda", "Swiss", "Brie"})

Dim gccombo As New GrapeCity.Win.Spread.InputMan.CellType.GcComboBoxCellType()
gccombo.Items.Add("Gouda")
gccombo.Items.Add("Swiss")
gccombo.Items.Add("Brie")
gccombo.AutoCompleteCustomSource = acsc
gccombo.AutoCompleteMode = AutoCompleteMode.Suggest
gccombo.AutoCompleteSource = AutoCompleteSource.CustomSource
FpSpread1.Sheets(0).Cells(0, 0).CellType = gccombo
参照

GcComboBoxCellType クラス
GcComboBoxCellType メンバ

 

 


© 2004-2018, GrapeCity Inc. All rights reserved.