BindingList<T>.SupportsSortingCore Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value indicating whether the list supports sorting.
protected:
virtual property bool SupportsSortingCore { bool get(); };
protected virtual bool SupportsSortingCore { get; }
member this.SupportsSortingCore : bool
Protected Overridable ReadOnly Property SupportsSortingCore As Boolean
Property Value
true
if the list supports sorting; otherwise, false
. The default is false
.
Remarks
The SupportsSortingCore property indicates whether the BindingList<T> supports sorting with the ApplySortCore method.
The BindingList<T> class does not provide a base implementation of sorting, so SupportsSortingCore always returns false
by default. For more information about implementing sorting, see the ApplySortCore method.