[]
Specifies how this column should be sorted when the Sort(SortFlags, int) method is called with a UseColSort flag.
[Browsable(false)]
public SortFlags Sort { get; set; }
Use this property when you want to sort multiple columns in different orders. For example, you could set the Sort property to Ascending for columns 1, 2, and 3, and to Descending for columns 4, 5, and 6. You would then call the grid's Sort(SortFlags, int) method with the sort parameter set to UseColSort to perform the sort using the order specified for each column.