AutoFilterSortStateModel

AutoFilterSortStateModel

Overview

AutoFilterSortStateModel is a class in Aspose.Cells FOSS for Java.

Represents the AutoFilterSortStateModel component.

This class provides 12 methods for working with AutoFilterSortStateModel objects in Java programs. Available methods include: AutoFilterSortStateModel, clear, getConditions, getRef, getSortMethod, hasStoredState, isCaseSensitive, isColumnSort, setCaseSensitive, setColumnSort, setRef, setSortMethod. All exported members are accessible to any Java application after installing the Aspose.Cells FOSS for Java package. Properties: caseSensitive, columnSort, conditions, ref, sortMethod.

Properties

NameTypeAccessDescription
columnSortbooleanReadIndicates whether column sort.
caseSensitivebooleanReadIndicates whether case sensitive.
sortMethodStringReadReturns the sort method.
refStringReadReturns the ref.
conditionsList<AutoFilterSortConditionModel>ReadReturns the conditions.

Methods

SignatureDescription
AutoFilterSortStateModel()Initializes a new AutoFilterSortStateModel instance.
isColumnSort()booleanIndicates whether column sort.
setColumnSort(value: boolean)Sets the column sort.
isCaseSensitive()booleanIndicates whether case sensitive.
setCaseSensitive(value: boolean)Sets the case sensitive.
getSortMethod()StringReturns the sort method.
setSortMethod(value: String)Sets the sort method.
getRef()StringReturns the ref.
setRef(value: String)Sets the ref.
getConditions()List<AutoFilterSortConditionModel>Returns the conditions.
clear()Clears the current state maintained by this object.
hasStoredState()booleanIndicates whether this instance has stored state.

See Also