custom method
Contents
[
Hide
]custom
Filters a list with a custom criteria.
def custom(self, field_index, operator_type1, criteria1):
...
Parameter | Type | Description |
---|---|---|
field_index | int | The integer offset of the field on which you want to base the filter (from the left of the list; the leftmost field is field 0). |
operator_type1 | FilterOperatorType | The filter operator type |
criteria1 | any | The custom criteria |
custom
Filters a list with custom criteria.
def custom(self, field_index, operator_type1, criteria1, is_and, operator_type2, criteria2):
...
Parameter | Type | Description |
---|---|---|
field_index | int | The integer offset of the field on which you want to base the filter (from the left of the list; the leftmost field is field 0). |
operator_type1 | FilterOperatorType | The filter operator type |
criteria1 | any | The custom criteria |
is_and | bool | |
operator_type2 | FilterOperatorType | The filter operator type |
criteria2 | any | The custom criteria |
See Also
- module
aspose.cells
- class
AutoFilter