Package com.grapecity.documents.excel
Interface ISort
public interface ISort
Represents the sort interface.
-
Method Summary
Modifier and TypeMethodDescriptionvoidapply()Applies the sort.booleanGets whether the sort range contains a header.booleanGets whether the sort is case sensitive.Gets the sort orientation.getRange()Gets the sort range.Gets the sort condition list.voidsetHeader(boolean value) Sets whether the sort range contains a header.voidsetMatchCase(boolean value) Sets whether the sort is case sensitive.voidsetOrientation(SortOrientation value) Sets the sort orientation.voidSets the sort range.
-
Method Details
-
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.
-