Package com.grapecity.documents.excel
Interface IFilter
public interface IFilter
Represents a filter for a single column. The Filter object is a member of the Filters collection. The Filters collection contains all the filters in an autofiltered range.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the first filtered value for the specified column in a filtered range.Returns the second filtered value for the specified column in a filtered range.booleangetOn()Gets whether the specified filter is on.Returns the operator that associates the two criteria applied by the specified filter.
-
Method Details
-
getCriteria1
Object getCriteria1()Returns the first filtered value for the specified column in a filtered range. -
getCriteria2
Object getCriteria2()Returns the second filtered value for the specified column in a filtered range. -
getOn
boolean getOn()Gets whether the specified filter is on. -
getOperator
AutoFilterOperator getOperator()Returns the operator that associates the two criteria applied by the specified filter.
-