[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ISortFields

Interface ISortFields

Namespace
GrapeCity.Documents.Excel
Assembly
GcDocs.Excel.dll

Represents the sort condition list.

public interface ISortFields

Properties

Count

Gets the list count.

int Count { get; }

Property Value

int

this[int]

Gets the sort key in the sort list.

ISortField this[int index] { get; }

Parameters

index int

The index of the ISortField to retrieve.

Property Value

ISortField

Methods

Add(ISortField)

Adds a sort field.

void Add(ISortField sortField)

Parameters

sortField ISortField

The sort information.

Clear()

Clears the list.

void Clear()

Remove(ISortField)

Removes a sort field.

bool Remove(ISortField sortField)

Parameters

sortField ISortField

The sort information.

Returns

bool