BindingList.SupportsSearchingCore プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > BindingList.SupportsSearchingCore プロパティの意味・解説 

BindingList.SupportsSearchingCore プロパティ

メモ : このプロパティは、.NET Framework version 2.0新しく追加されたものです。

リスト検索サポートしているかどうかを示す値を取得します

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

Protected Overridable ReadOnly
 Property SupportsSearchingCore As Boolean
Dim value As Boolean

value = Me.SupportsSearchingCore
protected virtual bool SupportsSearchingCore
 { get; }
protected:
virtual property bool SupportsSearchingCore {
    bool get ();
}
/** @property */
protected boolean get_SupportsSearchingCore ()
protected function get SupportsSearchingCore
 () : boolean

プロパティ
リスト検索サポートしている場合trueそれ以外場合false既定値false です。

解説解説

BindingList クラス検索基本実装提供していないため、既定では、SupportsSearchingCore は常に false返します検索実装方法詳細については、System.ComponentModel.IBindingList.Find メソッド参照してください

使用例使用例

SupportsSearchingCore メンバ使用方法次のコード例示します

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翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

BindingList.SupportsSearchingCore プロパティのお隣キーワード
検索ランキング

   

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



BindingList.SupportsSearchingCore プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

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

©2025 GRAS Group, Inc.RSS