Метаданные подмножества.

interface IWorkplaceViewSubsetMetadata {
    alias: string;
    caption: string;
    compositionId: string;
    expandedIconName: string;
    expandingMode: ExpandingMode;
    extensions: IDictionary<IViewExtensionMetadata>;
    iconName: string;
    isOwnedByUser: boolean;
    items: IList<IWorkplaceComponentMetadata>;
    orderPos: number;
    parentCompositionId: string;
    subset: null | IViewSubsetMetadata;
    subsets: IReadonlyList<IWorkplaceViewSubsetMetadata>;
    subsetsOwnerMetadata: null | IWorkplaceComponentMetadata;
    typeName: string;
    visibility: SubsetVisibility;
    clone(): IWorkplaceViewSubsetMetadata;
    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

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

caption: string

Заголовок объекта.

compositionId: string

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

expandedIconName: string

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

expandingMode: ExpandingMode

Режим отображения объектом дочерних элементов.

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

iconName: string

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

isOwnedByUser: boolean

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

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

orderPos: number

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

parentCompositionId: string

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

subset: null | IViewSubsetMetadata

Метаданные подмножества.

Настройки отображения дочерних элементов.

subsetsOwnerMetadata: null | IWorkplaceComponentMetadata

Метаданные родительского объекта.

typeName: string

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

visibility: SubsetVisibility

Режим отображения подмножества.

Methods

MMNEPVFCICPMFPCPTTAAATR