Метаданные ссылочной колонки.

interface IViewReferenceMetadata {
    alias: string;
    cardType: null | string;
    cardTypeColumn: null | string;
    colPrefix: string;
    condition: null | string;
    displayValueColumn: null | string;
    isCard: boolean;
    openOnDoubleClick: boolean;
    refSection: string[];
    clone(): IViewReferenceMetadata;
    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

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

cardType: null | string

Алиас типа карточки.

cardTypeColumn: null | string

Алиас колонки в которой хранится тип карточки.

colPrefix: string

Префикс группы столбцов.

condition: null | string

Условия попадания объекта метаданных в результирующие метаданные.

displayValueColumn: null | string

Алиас колонки с отображаемыми данными.

isCard: boolean

Признак ссылки на карточку.

openOnDoubleClick: boolean

Признак необходимости открытия карточки.

refSection: string[]

Список алиасов секций, на которые ссылается колонка.

Methods

  • Returns boolean

  • Returns this

MMNEPVFCICPMFPCPTTAAATR