BindingList<T>.IsSortedCore プロパティ

定義

リストが並べ替えられたかどうかを示す値を取得します。

protected:
 virtual property bool IsSortedCore { bool get(); };
protected virtual bool IsSortedCore { get; }
member this.IsSortedCore : bool
Protected Overridable ReadOnly Property IsSortedCore As Boolean

プロパティ値

リストが並べ替えられている場合は true。それ以外の場合は false。 既定値は、false です。

注釈

クラスは BindingList<T> 並べ替えの基本実装を提供しないため IsSortedCore 、常に既定で を返します false

クラスは BindingList<T> 、並べ替えの基本実装を提供しません。 並べ替えを有効にするには、 と から BindingList<T> クラスを派生させます。

さらに、補助 SortDirectionCore プロパティと SortPropertyCore並べ替えプロパティを実装することもできます。

適用対象