Объект содержащего колонку по которой осуществляется сортировка данных.

interface ISortColumn {
    alias: string;
    descending: boolean;
    sortDirection: SortDirection;
    clone(): ISortColumn;
    deserializeFromStorage(
        storage: IStorage,
        context?: StorageSerializableContext,
    ): this;
    isSealed(): boolean;
    seal(): this;
    serializeToStorage(
        storage?: IStorage,
        context?: StorageSerializableContext,
    ): IStorage;
}

Hierarchy (View Summary, Expand)

Implemented by

Properties

alias: string

Уникальный алиас объекта.

descending: boolean

Порядок сортировки по убыванию.

sortDirection: SortDirection

Порядок сортировки.

use descending.

Methods

  • Создает новый объект, который является копией текущего экземпляра.

    Returns ISortColumn

  • Returns boolean

  • Returns this

MMNEPVFCICPMFPCPTTAAATR