add method

add(self, filter)

Adds a label filter criteria.


def add(self, filter):
    ...
ParameterTypeDescription
filterSystem.StringThe filter data.

add(self, type, year, month, day)

Adds a date filter criteria value.


def add(self, type, year, month, day):
    ...
ParameterTypeDescription
typeaspose.cells.DateTimeGroupingTypeThe type of date filter.
yearintThe year.
monthintThe month.
dayintThe day.

add(self, type, year, month, day, hour, minute, second)

Adds a date time filter criteria value.


def add(self, type, year, month, day, hour, minute, second):
    ...
ParameterTypeDescription
typeaspose.cells.DateTimeGroupingTypeThe type of date filter.
yearintThe year.
monthintThe month.
dayintThe day.
hourintThe hour.
minuteintThe minute.
secondintThe second.

See Also