[]
Represents the sort condition list.
public interface ISortFields
Gets the list count.
int Count { get; }
Gets the sort key in the sort list.
ISortField this[int index] { get; }
index
intThe index of the ISortField to retrieve.
Adds a sort field.
void Add(ISortField sortField)
sortField
ISortFieldThe sort information.
Clears the list.
void Clear()
Removes a sort field.
bool Remove(ISortField sortField)
sortField
ISortFieldThe sort information.