Version

SortEvaluationMode Enumeration

Enum for specifying FieldLayoutSettings.SortEvaluationMode property.
Syntax
'Declaration
 
Public Enum SortEvaluationMode 
   Inherits System.Enum
public enum SortEvaluationMode : System.Enum 
Members
MemberDescription
AutoSorting operation is done internally by the data presenter. The data presenter sorts its record collection.
DefaultDefault is resolved to Auto.
ManualThe data presenter will take no actions when the user sorts a field. This option is useful if you want to externally perform the sorting operation on the data source. You can use the data presenter’s DataPresenterBase.Sorting or DataPresenterBase.Sorted event to get notified of change in the sorted fields and take appropriate action to sort the data source.
UseCollectionViewIf the underlying data source is ICollectionView, the data presenter will manipulate the ICollectionView's SortedDescriptions to reflect the sort critieria chosen by the user. It will also synchronize its FieldLayout.SortedFields to reflect the ICollectionView's SortDescriptions, however only for the root field-layout.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also