BindingList<T>.SupportsSortingCore Propriedade

Definição

Obtém um valor que indica se a lista dá suporte à classificação.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

Valor da propriedade

Boolean

true se a lista der suporte à classificação; caso contrário, false.true if the list supports sorting; otherwise, false. O padrão é false.The default is false.

Comentários

A SupportsSortingCore propriedade indica se o BindingList<T> dá suporte à classificação com o ApplySortCore método.The SupportsSortingCore property indicates whether the BindingList<T> supports sorting with the ApplySortCore method.

A BindingList<T> classe não fornece uma implementação base de classificação, portanto, SupportsSortingCore sempre retorna false por padrão.The BindingList<T> class does not provide a base implementation of sorting, so SupportsSortingCore always returns false by default. Para obter mais informações sobre como implementar a classificação, consulte o ApplySortCore método.For more information about implementing sorting, see the ApplySortCore method.

Aplica-se a