SortingAlgorithms Enum
New
Provides a list of constants to configure the sorting algorithm used when sorting data imported from a CSV file.
Parts
| Constant | Member name |
|---|---|
| 0 | SA_Quicksort |
| 1 | SA_TimSort |
| 2 | SA_HeapSort |
| 3 | SA_MergeSort |
Syntax
variable = SortingAlgorithms.MemberName
📝Note
The default value for the
SortingAlgorithmsenumeration isSA_Quicksortwhich is a variant of the classic Quicksort.
- See also
- ParseConfig Property.