ModelElementPropertySet

ModelElementPropertySet – этот класс описывает свойства элемента модели.

class ModelElementPropertySet {
  name: string;
  properties: ModelElementProperty[];
  type: IfcType;
}

Свойства

name

Имя категории свойств элемента

name: string;

properties

Список свойств элемента. Подробнее: ModelElementProperty

properties: ModelElementProperty[];

type

Тип категории свойств элемента. Подробнее: IfcType.

type: IfcType;