property Column.Filter as String
Specifies the column's filter when the filter type is exFilter,  exPattern, exDate, exNumeric, exCheck or exImage.

TypeDescription
String A string expression that specifies the column's filter.

The Filter property specifies the column's filter when the filter type is exFilter, exPattern, exDate, exNumeric, exCheck or exImage. The Def(exFilterPatternTemplate) property specifies the template for the column's filter when the Filter property or the 'Filter For' field is populated. The exFilterDoCaseSensitive flag can be combined with exPattern or exFilter types, indicating that case-sensitive filtering should be performed. This property specifies a custom template for how the column's filter is interpreted when the Filter property or the "Filter For" field is used. It is applicable when the column's FilterType is set to exPattern. The template can include the <%filter%> keyword, which is replaced with the user's input.

For example:

If the exFilterPatternTemplate is left empty, the filter will behave as a standard pattern without modification.

The Filter property can be:

The Filter property has no effect if the FilterType property is one of the followings: exAll, exBlanks and exNonBlanks

The ApplyFilter method should be called to update the control's content after changing the Filter or FilterType property. The ClearFilter method clears the Filter and the FilterType properties. Use the FilterInclude property to specify whether the child items should be included to the list when the user applies the filter. Use the FilterCriteria property to filter items using the AND, OR and NOT operators. Use the CustomFilter property to define you custom filters. Use the ShowFilter method to show programmatically the column's drop down filter window.