You can use touch gestures when filtering.
Use the ZoomFactor property to increase the size of the drop-down list. The AllowAutoFilter property must be true to allow filtering with touch gestures.
The following example sets the AllowAutoFilter and ZoomFactor properties.
CS |
Copy Code
|
---|---|
fpSpread1.ActiveSheet.Columns[1].AllowAutoFilter = true;
fpSpread1.ActiveSheet.ZoomFactor = 2;
|
VB |
Copy Code
|
---|---|
fpSpread1.ActiveSheet.Columns(1).AllowAutoFilter = True
fpSpread1.ActiveSheet.ZoomFactor = 2
|