Package io.keikai.model
Interface SIconFilter
- All Known Implementing Classes:
IconFilterImpl
public interface SIconFilter
Represents an icon filter criterion for autofilter.
An icon filter matches rows where the conditional formatting icon
on the filter column matches the specified icon set and icon ID.
OOXML structure:
<autoFilter ref="A1:D100">
<filterColumn colId="2">
<iconFilter iconSet="3Arrows" iconId="1"/>
</filterColumn>
</autoFilter>
- Since:
- 7.0.0
-
Method Summary
Modifier and TypeMethodDescriptionintReturns the 0-based icon ID within the icon set.Returns the icon set type used by this filter.
-
Method Details
-
getIconSet
SIconSet.IconSetType getIconSet()Returns the icon set type used by this filter.- Returns:
- the icon set type
-
getIconId
int getIconId()Returns the 0-based icon ID within the icon set.- Returns:
- the icon ID
-