@mendix/extensions-api - v0.11.2
    Preparing search index...

    Interface BuildingBlock

    A unit is a container of elements, it can not contain other units.

    interface BuildingBlock {
        $CreationOptions?: BuildingBlockCreationOptions;
        $ID: string;
        $Type: "Pages$BuildingBlock";
        $UnitID?: string;
        canvasHeight: number;
        canvasWidth: number;
        displayName: string;
        documentation: string;
        documentationUrl: string;
        excluded: boolean;
        exportLevel: ExportLevel;
        imageData: any;
        name: string;
        platform: SnippetType;
        templateCategory: string;
        templateCategoryWeight: number;
        widgets: Pages.Widget[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: BuildingBlockCreationOptions

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "Pages$BuildingBlock"

    The type of the element.

    $UnitID?: string
    canvasHeight: number
    canvasWidth: number
    displayName: string
    documentation: string
    documentationUrl: string
    excluded: boolean
    exportLevel: ExportLevel
    imageData: any
    name: string
    platform: SnippetType
    templateCategory: string
    templateCategoryWeight: number
    widgets: Pages.Widget[]