[This is preliminary documentation and is subject to change.]

When overriden in derived class gets whether the list supports sorting.

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
protected abstract bool SupportsSorting { get; }
Visual Basic
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
Protected MustOverride ReadOnly Property SupportsSorting As Boolean
	Get
Visual C++
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
protected:
virtual property bool SupportsSorting {
	bool get () abstract;
}
F#
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
abstract SupportsSorting : bool
JScript
abstract function get SupportsSorting () : boolean

Return Value

true if the list supports sorting; otherwise, false.

Implements

IBindingList..::..SupportsSorting

See Also