Skip to main content
A newer version of this page is available. .

DocumentColumnFilteringEventArgs.Filter Property

Gets or sets the filter to apply to the currently processed column.

Namespace: DevExpress.Export

Assembly: DevExpress.Printing.v18.2.Core.dll

Declaration

public IXlFilterCriteria Filter { get; set; }

Property Value

Type Description
IXlFilterCriteria

The filter to apply to the column.

Remarks

To specify a filter for a column, create one of the following objects and assign it to the event’s Filter parameter:

  • XlDynamicFilter - A smart filter whose results may depend on the data to which it is applied or the current date (AboveAverage, LastMonth, LastYear, NextMonthm ThisQuarter, ThisWeek, Today, etc.).
  • XlCustomFilters - A filter that consists of one or two expressions.
  • XlTop10Filter - A filter that selects the top N or bottom N items.
  • XlValuesFilter - A filter that selects items with certain values.
  • XlColorFilter - A filter that selects items with a certain fill or font color.
See Also