名前空間一覧 > GrapeCity.Web.Input.IMCombo 名前空間 > GcComboBox クラス > FindString メソッド : FindString(Int32,String,Int32) メソッド |
Public Overloads Function FindString( _ ByVal findTargetColumnIndex As Integer, _ ByVal s As String, _ ByVal startIndex As Integer _ ) As Integer
public int FindString( int findTargetColumnIndex, string s, int startIndex )
例外 | 解説 |
---|---|
System.ArgumentOutOfRangeException |
または
|
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")))) ' FindStringメソッドを使って検索します。 Dim foundIndex As Integer = GcComboBox1.FindString(1, "bcd", 0) ' 検索結果をデバッグウィンドウに表示します。 Debug.WriteLine(GcComboBox1.Items(foundIndex).Text)
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")))) // FindStringメソッドを使って検索します。 int foundIndex = GcComboBox1.FindString(1, "bcd", 0); // 検索結果をデバッグウィンドウに表示します。 Debug.WriteLine(GcComboBox1.Items[foundIndex].Text);