You can use touch gestures when sorting.
Tap the sort indicator to sort. The AllowAutoSort property must be true to use touch gestures. The following image displays sort indicators.
Set the ZoomFactor property to change the size of the control. Some touch gestures are easier to use if the control is zoomed.
The following example allows sorting and zooms the control.
CS |
Copy Code
|
---|---|
fpSpread1.ActiveSheet.Columns[0, 3].AllowAutoSort = true;
fpSpread1.ActiveSheet.ZoomFactor = 2;
|
VB |
Copy Code
|
---|---|
fpSpread1.ActiveSheet.Columns(0, 3).AllowAutoSort = True
fpSpread1.ActiveSheet.ZoomFactor = 2
|