How to Sort a Collection
27 Mar 20181 minute to read
To sort your data, add the name of the property that you want to sort to the Engine.TableDescriptor.SortedColumns collection.
// Sort column A.
groupingEngine.TableDescriptor.SortedColumns.Add("A");
' Sort column A.
groupingEngine.TableDescriptor.SortedColumns.Add("A")