Метаданные содержимого.

interface IWorkplaceContentMetadata {
    alias: string;
    compositionId: string;
    expandedIconName: string;
    extensions: IDictionary<IViewExtensionMetadata>;
    iconName: string;
    isOwnedByUser: boolean;
    items: IList<IWorkplaceComponentMetadata>;
    layouts: IReadonlyList<IWorkplaceLayoutMetadata>;
    orderPos: number;
    parentCompositionId: string;
    typeName: string;
    view: null | IWorkplaceLayoutViewMetadata;
    clone(): IWorkplaceContentMetadata;
    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

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

expandedIconName: string

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

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

iconName: string

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

isOwnedByUser: boolean

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

Вложенные элементы.

Список дочерних расположений.

orderPos: number

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

parentCompositionId: string

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

typeName: string

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

Дочернее представление.

Methods

MMNEPVFCICPMFPCPTTAAATR