BimCT SDK / WebGL2 Viewer
    Preparing search index...

    Interface BimCTCustomElementPropertiesDataBinding

    interface BimCTCustomElementPropertiesDataBinding {
        listCustomElementProperties(
            globalIds?: string[],
        ): Promise<CustomElementProperties>;
        addProperty(
            globalIds: string[],
            groupName: string,
            property: CustomElementProperty,
        ): Promise<CustomElementPropertyResult>;
        updateProperty(
            globalIds: string[],
            groupName: string,
            property: CustomElementProperty,
        ): Promise<CustomElementPropertyResult>;
        deleteProperty(
            globalIds: string[],
            groupName: string,
            propertyName: string,
        ): Promise<CustomElementPropertyResult>;
    }
    Index

    Methods

    • Parameters

      • globalIds: string[]
      • groupName: string
      • propertyName: string

      Returns Promise<CustomElementPropertyResult>