Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

BaseObjectSpace.GetCollectionSorting(Object) Method

Returns the sort settings for a particular collection.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v19.2.dll

Declaration

public virtual IList<SortProperty> GetCollectionSorting(
    object collection
)

Parameters

Name Type Description
collection Object

An Object that is the collection whose sort settings are requested.

Returns

Type Description
IList<SortProperty>

A list of SortProperty objects specifying the sort order for the collection.

Remarks

In BaseObjectSpace, this method always returns null, but this behavior is overridden in descendants (see EFObjectSpace.GetCollectionSorting and XPObjectSpace.GetCollectionSorting).

See Also