BimCT SDK / WebGL2 Viewer
    Preparing search index...

    Interface ElementData

    Represents data of an element.

    interface ElementData {
        id?: Int64;
        modelId?: Int64;
        name: string;
        globalId?: string;
        spatial: boolean;
        hasGeometry: boolean;
        hasDeepGeometry: boolean;
        layer?: string;
        tagId?: string;
        label: string;
        material?: string;
        bimType?: string;
        elementType?: string;
        generalType?: ElementGeneralType;
        storeyId?: Int64;
        memberships?: MembershipData[];
        children?: ElementData[];
        contains?: ElementData[];
        parent?: ElementData;
        containedBy?: ElementData;
        properties?: Map<string, ElementProperty[]>;
    }
    Index

    Properties

    id?: Int64
    modelId?: Int64
    name: string
    globalId?: string
    spatial: boolean
    hasGeometry: boolean
    hasDeepGeometry: boolean
    layer?: string
    tagId?: string
    label: string
    material?: string
    bimType?: string
    elementType?: string
    generalType?: ElementGeneralType
    storeyId?: Int64
    memberships?: MembershipData[]
    children?: ElementData[]
    contains?: ElementData[]
    parent?: ElementData
    containedBy?: ElementData
    properties?: Map<string, ElementProperty[]>