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

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

IBindingList.SupportsSearching プロパティ

リストFind メソッド使用した検索サポートしているかどうかを示す値を取得します

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

Dim instance As IBindingList
Dim value As Boolean

value = instance.SupportsSearching
bool SupportsSearching { get; }
property bool SupportsSearching {
    bool get ();
}
/** @property */
boolean get_SupportsSearching ()
function get SupportsSearching () : boolean

プロパティ
リストFind メソッド使用した検索サポートしている場合trueそれ以外場合false

使用例使用例

SupportsSearching プロパティ実装する方法次のコード例示します

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.SupportsSearching プロパティ」の関連用語

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

   

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



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

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

©2024 GRAS Group, Inc.RSS