PowerTools InputMan for Windows Forms 8.0J
FindStringExact(String,String) メソッド
使用例 

検索キーとなる文字列を表すString値。
テキスト書式を参照するSystem.String
リスト内に存在する、指定したテキスト書式に基づく指定した文字列と一致するすべての項目を検索します。
構文
Public Overloads Function FindStringExact( _
   ByVal s As String, _
   ByVal textFormat As String _
) As MatchedComboItemCollection
public MatchedComboItemCollection FindStringExact( 
   string s,
   string textFormat
)

パラメータ

s
検索キーとなる文字列を表すString値。
textFormat
テキスト書式を参照するSystem.String

戻り値の型

一致した項目を含むMatchedListItemCollection オブジェクト。
例外
例外解説
System.ArgumentException textFormatが有効なテキスト書式ではありません。
解説
このメソッドで実行される検索では、大文字と小文字は区別されます。sパラメーターは、コンボボックスリストの各項目に関連付けられたテキストに対して比較する文字列です。テキストの先頭から一致が検索されて、指定した文字列に一致するリストの最初の項目が返されます。その後で、ListItemCollection.Remove メソッドを使用して検索文字列を含む項目を削除したり、項目のテキストを変更したりできます。指定したテキストが見つかった後、引き続きGcComboBox内で同じテキストの他のインスタンスを検索する場合は、別のバージョンのFindStringExactメソッド(GcComboBox内の開始インデックスを指定するためのパラメーターを持つFindStringExact(String,Int32,String))を使用する必要があります。厳密な単語の一致ではなく単語の部分一致を検索する場合は、FindString(String,String) メソッドを使用します。
使用例
次のコードは FindStringExact メソッドの使用例です。
//  Please use the following namespace
//  using System.Windows.Forms;
//  using GrapeCity.Win.Editors;

public void FindStringExactFromGcComboBox()
{
    // Creates the GcComboBox 
    GcComboBox gcComboBox1 = new GcComboBox();
    // Creates items for the GcComboBox.
    this.CreateItemsForFindStringExact(gcComboBox1);
    // The FindString can find out all the ListItem which contians a SubItem with the "AA" value
    // and another SubItem with the "001" value.
    MatchedComboItemCollection collection = gcComboBox1.FindStringExact("AA (Tel) 001", "[0] (Tel) [1]");

}

public void CreateItemsForFindStringExact(GcComboBox gcComboBox)
{
    ListItem listItem1 = new ListItem();
    SubItem subItem1 = new SubItem();
    SubItem subItem2 = new SubItem();
    ListItem listItem2 = new ListItem();
    SubItem subItem3 = new SubItem();
    SubItem subItem4 = new SubItem();
    ListItem listItem3 = new ListItem();
    SubItem subItem5 = new SubItem();
    SubItem subItem6 = new SubItem();
    ListItem listItem4 = new ListItem();
    SubItem subItem7 = new SubItem();
    SubItem subItem8 = new SubItem();
    ListItem listItem5 = new ListItem();
    SubItem subItem9 = new SubItem();
    SubItem subItem10 = new SubItem();

    ListColumn listColumn1 = new ListColumn();
    ListColumn listColumn2 = new ListColumn();

    subItem1.Value = "AA";
    subItem2.Value = "001";
    listItem1.SubItems.AddRange(new SubItem[] {
    subItem1,
    subItem2});
    subItem3.Value = "BB";
    subItem4.Value = "002";
    listItem2.SubItems.AddRange(new SubItem[] {
    subItem3,
    subItem4});
    subItem5.Value = "CC";
    subItem6.Value = "003";
    listItem3.SubItems.AddRange(new SubItem[] {
    subItem5,
    subItem6});
    subItem7.Value = "AA";
    subItem8.Value = "004";
    listItem4.SubItems.AddRange(new SubItem[] {
    subItem7,
    subItem8});
    subItem9.Value = "aa";
    subItem10.Value = "001";
    listItem5.SubItems.AddRange(new SubItem[] {
    subItem9,
    subItem10});
    gcComboBox.Items.AddRange(new ListItem[] {
    listItem1,
    listItem2,
    listItem3,
    listItem4,
    listItem5});
    gcComboBox.ListColumns.AddRange(new ListColumn[] { listColumn1, listColumn2 });
}
'  Please use the following namespace
'  Imports System.Windows.Forms;
'  Imports GrapeCity.Win.Editors;

Public Sub FindStringExactFromGcComboBox()
    ' Creates the GcComboBox 
    Dim gcComboBox1 As New GcComboBox()
    ' Creates items for the GcComboBox.
    Me.CreateItemsForFindStringExact(gcComboBox1)
    ' The FindString can find out all the ListItem which contians a SubItem with the "AA" value
    ' and another SubItem with the "001" value.
    Dim collection As MatchedComboItemCollection = gcComboBox1.FindStringExact("AA (Tel) 001", "[0] (Tel) [1]")

End Sub

Public Sub CreateItemsForFindStringExact(ByVal gcComboBox As GcComboBox)
    Dim listItem1 As New ListItem()
    Dim subItem1 As New SubItem()
    Dim subItem2 As New SubItem()
    Dim listItem2 As New ListItem()
    Dim subItem3 As New SubItem()
    Dim subItem4 As New SubItem()
    Dim listItem3 As New ListItem()
    Dim subItem5 As New SubItem()
    Dim subItem6 As New SubItem()
    Dim listItem4 As New ListItem()
    Dim subItem7 As New SubItem()
    Dim subItem8 As New SubItem()
    Dim listItem5 As New ListItem()
    Dim subItem9 As New SubItem()
    Dim subItem10 As New SubItem()

    Dim listColumn1 As New ListColumn()
    Dim listColumn2 As New ListColumn()

    subItem1.Value = "AA"
    subItem2.Value = "001"
    listItem1.SubItems.AddRange(New SubItem() {subItem1, subItem2})
    subItem3.Value = "BB"
    subItem4.Value = "002"
    listItem2.SubItems.AddRange(New SubItem() {subItem3, subItem4})
    subItem5.Value = "CC"
    subItem6.Value = "003"
    listItem3.SubItems.AddRange(New SubItem() {subItem5, subItem6})
    subItem7.Value = "AA"
    subItem8.Value = "004"
    listItem4.SubItems.AddRange(New SubItem() {subItem7, subItem8})
    subItem9.Value = "aa"
    subItem10.Value = "001"
    listItem5.SubItems.AddRange(New SubItem() {subItem9, subItem10})
    gcComboBox.Items.AddRange(New ListItem() {listItem1, listItem2, listItem3, listItem4, listItem5})
    gcComboBox.ListColumns.AddRange(New ListColumn() {listColumn1, listColumn2})
End Sub
参照

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

 

 


© 2004-2015 GrapeCity inc. All rights reserved.