IBindingList.Find メソッドとは? わかりやすく解説

IBindingList.Find メソッド

指定されPropertyDescriptor保持する行のインデックス返します

名前空間: System.ComponentModel
アセンブリ: System (system.dll 内)
構文構文

Function Find ( _
    property As PropertyDescriptor, _
    key As Object _
) As Integer
Dim instance As IBindingList
Dim property As PropertyDescriptor
Dim key As Object
Dim returnValue As Integer

returnValue = instance.Find(property, key)
int Find (
    PropertyDescriptor property,
    Object key
)
int Find (
    PropertyDescriptor^ property, 
    Object^ key
)
int Find (
    PropertyDescriptor property, 
    Object key
)
function Find (
    property : PropertyDescriptor, 
    key : Object
) : int

パラメータ

property

検索対象の PropertyDescriptor。

key

検索する property パラメータの値。

戻り値
指定されPropertyDescriptor保持する行のインデックス

例外例外
例外種類条件

NotSupportedException

SupportsSearching が false です。

解説解説

このメソッドは、property パラメータの値が key パラメータの値と等し最初の行を選択します

このメソッドSupportsSearchingtrue場合サポートされます。それ以外場合、このメソッドNotSupportedExceptionスローます。

使用例使用例

Find メソッド実装する方法次のコード例示します

Public Class MyFontList
    Inherits BindingList(Of Font)

    Protected Overrides ReadOnly
 Property SupportsSearchingCore() As Boolean
        Get
            Return True
        End Get
    End Property
    
    Protected Overrides Function
 FindCore(ByVal prop As PropertyDescriptor,
 _
        ByVal key As Object)
 As Integer
        ' Ignore the prop value and search by family name.
        Dim i As Integer
        While i < Count
            If Items(i).FontFamily.Name.ToLower() = CStr(key).ToLower()
 Then
                Return i
            End If
            i += 1
        End While

        Return -1
    End Function
End Class
    public class MyFontList : BindingList<Font>
    {

        protected override bool SupportsSearchingCore
        {
            get { return true;
 }
        }
        protected override int FindCore(PropertyDescriptor
 prop, object key)
        {
            // Ignore the prop value and search by family name.
            for (int i = 0; i < Count; ++i)
            {
                if (Items[i].FontFamily.Name.ToLower() == ((string)key).ToLower())
                    return i;

            }
            return -1;
        }


    }
  
}
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「IBindingList.Find メソッド」の関連用語

IBindingList.Find メソッドのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



IBindingList.Find メソッドのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2024 Microsoft.All rights reserved.

©2024 GRAS Group, Inc.RSS