You can display for the user or hide from the user the filter indicators that may appear in the column headers.
Using Code
Here is an example of hiding the filter indicator in code.
Example
C# | Copy Code |
---|---|
FpSpread1.Sheets[0].Columns[0].ShowFilterIndicator = false;
|
VB | Copy Code |
---|---|
FpSpread1.Sheets(0).Columns(0).ShowFilterIndicator = False
|
Return to Setting the Appearance of Filter Indicators.