接口 ISort
public interface ISort
Represents the sort interface.
-
方法概要
修饰符和类型方法说明void
apply()
Applies the sort.boolean
Gets whether the sort range contains a header.boolean
Gets whether the sort is case sensitive.Gets the sort orientation.getRange()
Gets the sort range.Gets the sort condition list.void
setHeader
(boolean value) Sets whether the sort range contains a header.void
setMatchCase
(boolean value) Sets whether the sort is case sensitive.void
setOrientation
(SortOrientation value) Sets the sort orientation.void
Sets the sort range.
-
方法详细资料
-
getRange
IRange getRange()Gets the sort range. -
setRange
Sets the sort range. -
getMatchCase
boolean getMatchCase()Gets whether the sort is case sensitive. -
setMatchCase
void setMatchCase(boolean value) Sets whether the sort is case sensitive. -
getOrientation
SortOrientation getOrientation()Gets the sort orientation. -
setOrientation
Sets the sort orientation. -
getSortFields
ISortFields getSortFields()Gets the sort condition list. -
getHeader
boolean getHeader()Gets whether the sort range contains a header. -
setHeader
void setHeader(boolean value) Sets whether the sort range contains a header. -
apply
void apply()Applies the sort.
-