PowerTools InputMan for ASP.NET 8.0J
FindStringExact(Int32,String) メソッド
使用例 

検索対象となるカラムのインデックス(Int32 型)
検索対象の文字列(String 型)
コンボコントロール内で、指定した文字列に一致する項目を検索します。
構文
Public Overloads Function FindStringExact( _
   ByVal findTargetColumnIndex As Integer, _
   ByVal s As String _
) As MatchedComboItemCollection

パラメータ

findTargetColumnIndex
検索対象となるカラムのインデックス(Int32 型)
s
検索対象の文字列(String 型)

戻り値の型

該当するすべての項目のコレクション。
解説
FindStringExactメソッドは、Itemsプロパティが参照する ComboItemCollectionオブジェクトを検索し、ComboItemCollectionオブジェクト内に存在する該当項目(指定した文字列に一致するすべての項目)のコレクションが返されます。
使用例
次のサンプルコードは、FindStringExactメソッドの使用方法を示します。
Imports GrapeCity.Web.Input.IMCombo
Imports GrapeCity.Web.Input.Core.ListBox
Imports System.Diagnostics

' コントロールにカラムを設定します。
GcComboBox1.ListBox.Columns.Add(New ListColumn("カラム1"))
GcComboBox1.ListBox.Columns.Add(New ListColumn("カラム2"))
GcComboBox1.ListBox.Columns.Add(New ListColumn("カラム3"))

' コントロールに項目を追加します。 
GcComboBox1.Items.Add(New ComboItem(New SubItem("AAA"), New SubItem("abcde"), New SubItem(DateTime.Parse("2015/12/01"))))
GcComboBox1.Items.Add(New ComboItem(New SubItem("BBB"), New SubItem("bcdef"), New SubItem(DateTime.Parse("2015/12/15"))))
GcComboBox1.Items.Add(New ComboItem(New SubItem("CCC"), New SubItem("cdefg"), New SubItem(DateTime.Parse("2015/11/01"))))
GcComboBox1.Items.Add(New ComboItem(New SubItem("DDD"), New SubItem("defgh"), New SubItem(DateTime.Parse("2015/11/15"))))

' FindStringExactメソッドを使って検索します。
Dim matchedItem As MatchedComboItemCollection
Dim item As ComboItem
matchedItem = GcComboBox1.FindStringExact(1, "cdefg")
For Each item In matchedItem
    ' 検索結果をデバッグウィンドウに表示します。
    Debug.WriteLine(item.Text)
Next
using GrapeCity.Web.Input.IMCombo;
using GrapeCity.Web.Input.Core.ListBox;
using System.Diagnostics;

// コントロールにカラムを設定します。
GcComboBox1.ListBox.Columns.Add(new ListColumn("カラム1"));
GcComboBox1.ListBox.Columns.Add(new ListColumn("カラム2"));
GcComboBox1.ListBox.Columns.Add(new ListColumn("カラム3"));

// コントロールに項目を追加します。
GcComboBox1.Items.Add(new ComboItem(new SubItem("AAA"), new SubItem("abcde"), new SubItem(DateTime.Parse("2015/12/01"))))
GcComboBox1.Items.Add(new ComboItem(new SubItem("BBB"), new SubItem("bcdef"), new SubItem(DateTime.Parse("2015/12/15"))))
GcComboBox1.Items.Add(new ComboItem(new SubItem("CCC"), new SubItem("cdefg"), new SubItem(DateTime.Parse("2015/11/01"))))
GcComboBox1.Items.Add(new ComboItem(new SubItem("DDD"), new SubItem("defgh"), new SubItem(DateTime.Parse("2015/11/15"))))

// FindStringExactメソッドを使って検索します。
MatchedComboItemCollection matchedItem;
matchedItem = GcComboBox1.FindStringExact(1, "cdefg");
foreach (ComboItem item in matchedItem)
{
    // 検索結果をデバッグウィンドウに表示します。
    Debug.WriteLine(item.Text);
}
参照

GcComboBox クラス
GcComboBox メンバ
オーバーロード一覧

 

 


© 2005-2015 GrapeCity inc. All rights reserved.