[]
        
(Showing Draft Content)

Showing or Hiding Filter Indicators

You can display for the user or hide from the user the filter indicators that appear in the column headers.

Using Code

  1. Set the AllowAutoFilter property.

  2. Set the ShowFilterIndicator property.

Example

This example enables the filtering on first column and hides the filter indicator.

fpSpread1.Sheets[0].Columns[0].AllowAutoFilter = true;
fpSpread1.Sheets[0].RowFilter.ShowFilterIndicator = false;
fpSpread1.Sheets(0).Columns(0).AllowAutoFilter = True
fpSpread1.Sheets(0).RowFilter.ShowFilterIndicator = False

See Also

Using Custom Filter Indicator Images

Determining Which Header Row Displays the Indicators