MESCIUS SPREAD for ASP.NET 10.0J
AutoCompleteMode プロパティ

コンボボックスのオートコンプリートモードを取得または設定します。入力中にリスト内の項目を提示するか、またはユーザーが入力するにつれて一致する項目の残りの部分を後ろに追加するかを決定します。
構文
'Declaration
 
Public Property AutoCompleteMode As AjaxControlToolkit.ComboBoxAutoCompleteMode
public AjaxControlToolkit.ComboBoxAutoCompleteMode AutoCompleteMode {get; set;}
次のサンプルコードは、AutoCompleteModeプロパティを設定します。
FarPoint.Web.Spread.Extender.AjaxComboBoxCellType combo = new FarPoint.Web.Spread.Extender.AjaxComboBoxCellType();
combo.BackColor = System.Drawing.Color.Aquamarine;
combo.AutoCompleteMode = AjaxControlToolkit.ComboBoxAutoCompleteMode.Append;
combo.ShowEditor = true;
combo.DropDownStyle = AjaxControlToolkit.ComboBoxStyle.DropDown;
combo.ItemInsertLocation = AjaxControlToolkit.ComboBoxItemInsertLocation.OrdinalText;
combo.Items.Add("test");
combo.Items.Add("second");
combo.CaseSensitive = true;
combo.AutoPostBack = true;
FpSpread1.Sheets[0].Cells[0, 0].CellType = combo;
Dim combo As New FarPoint.Web.Spread.Extender.AjaxComboBoxCellType()
combo.BackColor = System.Drawing.Color.Aquamarine
combo.AutoCompleteMode = AjaxControlToolkit.ComboBoxAutoCompleteMode.Append
combo.ShowEditor = True
combo.DropDownStyle = AjaxControlToolkit.ComboBoxStyle.DropDown
combo.ItemInsertLocation = AjaxControlToolkit.ComboBoxItemInsertLocation.OrdinalText
combo.Items.Add("test")
combo.Items.Add("second")
combo.CaseSensitive = True
combo.AutoPostBack = True
FpSpread1.Sheets(0).Cells(0, 0).CellType = combo
参照

AjaxComboBoxCellType クラス
AjaxComboBoxCellType メンバ

 

 


© MESCIUS inc. All rights reserved.