Version

CalculationScope Enumeration

Used for specifying whether to include all records in unsorted order, all records in sorted order or only the filtered records for calculating summaries.
Syntax
'Declaration
 
Public Enum CalculationScope 
   Inherits System.Enum
public enum CalculationScope : System.Enum 
Members
MemberDescription
DefaultDefault is resolved to FilteredSortedList.
FilteredSortedListOnly visible (viewable) records are processed and they are processed in their sorted order.
FullSortedListAll records are used and they are processed in sorted order.
FullUnsortedListAll records are used and the order in which the records are processed corresponds to their order in which their associated data items appear in the underlying data source list.
Remarks

CalculationScope is used for specifying FieldLayoutSettings.CalculationScope property. It specifies which records and in which order to traverse for summary calculation purposes. FullUnsortedList will calculate summaries based on all records and the field values will be aggregated into the summary calculation in the order in which it appears in the underlying data list. FullSortedList will traverse field values in the order they are in the data grid. This only makes a difference if the calculation relies on the order of values. FilteredSortedList will only use field values of visible records.

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