PowerTools InputMan for ASP.NET 8.0J
AutoFilter プロパティ
使用例 

フィルタ機能を定義するAutoFilterオブジェクトを参照します。
構文
Public Property AutoFilter As AutoFilter
public AutoFilter AutoFilter {get; set;}
解説
AutoFilterプロパティは、DropDownStyleプロパティがSimpleまたはDropDownListのとき、テキストエリアに入力された文字を使用して、リストボックスの項目をフィルタする機能を設定します。フィルタリング機能の詳細を設定するには、AutoFilterクラスを使用します。
使用例
次のサンプルコードでは、コンボコントロールへのフィルタリング動作の設定例を示します。
Imports GrapeCity.Web.Input.IMCombo

GcComboBox1.AutoFilter.Enabled = True
GcComboBox1.AutoFilter.EnableCaching = True
GcComboBox1.AutoFilter.Interval = 500
GcComboBox1.AutoFilter.MaxFilteredItem = 8
GcComboBox1.AutoFilter.MinimumPrefixLength = 1
using GrapeCity.Web.Input.IMCombo;

GcComboBox1.AutoFilter.Enabled = true;
GcComboBox1.AutoFilter.EnableCaching = true;
GcComboBox1.AutoFilter.Interval = 500;
GcComboBox1.AutoFilter.MaxFilteredItem = 8;
GcComboBox1.AutoFilter.MinimumPrefixLength = 1;
参照

GcComboBox クラス
GcComboBox メンバ

 

 


© 2005-2015 GrapeCity inc. All rights reserved.