Package com.grapecity.documents.excel
Interface ISortFields
public interface ISortFields
Represents the sort condition list.
-
Method Summary
Modifier and TypeMethodDescriptionvoidadd(ISortField sortField) Adds a sort field.voidclear()Clears the list.get(int index) Gets the sort key in the sort list.intgetCount()Gets the list count.booleanremove(ISortField sortField) Removes a sort field.
-
Method Details
-
get
Gets the sort key in the sort list. -
add
Adds a sort field.- Parameters:
sortField- The sort information.
-
remove
Removes a sort field.- Parameters:
sortField- The sort information.
-
getCount
int getCount()Gets the list count. -
clear
void clear()Clears the list.
-