Настройки рабочего места.

interface IWorkplaceSettingsMetadata {
    alias: string;
    compositionId: string;
    emptyFoldersVisible: boolean;
    expandedIconName: string;
    extensions: IDictionary<IViewExtensionMetadata>;
    iconName: string;
    isOwnedByUser: boolean;
    leftSideWidth: number;
    orderPos: number;
    parentCompositionId: string;
    treeVisibility: null | boolean;
    typeName: string;
    workplaceId: string;
    clone(): IWorkplaceSettingsMetadata;
    deserializeFromStorage(
        storage: IStorage,
        context?: StorageSerializableContext,
    ): this;
    isSealed(): boolean;
    seal(): this;
    serializeToStorage(
        storage?: IStorage,
        context?: StorageSerializableContext,
    ): IStorage;
    visit(visitor: IWorkplaceMetadataVisitor): void;
    visitAsync(visitor: IWorkplaceMetadataVisitorAsync): Promise<void>;
}

Hierarchy (View Summary, Expand)

Implemented by

Properties

alias: string

Алиас элемента метаданных.

compositionId: string

Уникальный идентификатор элемента.

emptyFoldersVisible: boolean

Признак отображения пустых папок.

expandedIconName: string

Имя значка отображаемого в развернутом режиме.

Список имен типов расширений.

iconName: string

Имя значка отображаемого в обычном режиме.

isOwnedByUser: boolean

Владельцем является текущий пользователь.

leftSideWidth: number

Размер области дерева.

orderPos: number

Номер позиции элемента в списке.

parentCompositionId: string

Идентификатор родительского элемента метаданных.

treeVisibility: null | boolean

Признак отображения дерева.

typeName: string

Имя типа на серверной стороне.

workplaceId: string

Идентификатор рабочего места.

Methods

MMNEPVFCICPMFPCPTTAAATR