WebCAD-Lib-TS API 文档 - v1.0.0
    Preparing search index...

    Interface PropertyDefinition

    属性定义

    interface PropertyDefinition {
        key: string;
        label: string;
        type: PropertyType;
        entityTypes: EntityTypeFilter[];
        getValue: (entity: EntityBase) => any;
    }
    Index

    Properties

    key: string

    属性键名

    label: string

    显示标签

    属性值类型

    entityTypes: EntityTypeFilter[]

    适用的实体类型,'ALL' 表示适用于所有类型

    getValue: (entity: EntityBase) => any

    获取属性值的函数