'Declaration Public Enum CalculationScope Inherits System.Enum
public enum CalculationScope : System.Enum
Member | Description |
---|---|
Default | Default is resolved to FilteredSortedList. |
FilteredSortedList | Only visible (viewable) records are processed and they are processed in their sorted order. |
FullSortedList | All records are used and they are processed in sorted order. |
FullUnsortedList | All 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. |
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.
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