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

    Interface ImageCollection

    interface ImageCollection {
        $CreationOptions?: ImageCollectionCreationOptions;
        $ID: string;
        $Type: "Images$ImageCollection";
        documentation: string;
        excluded: boolean;
        exportLevel: ExportLevel;
        images: Image[];
        name: string;
        addImage(options: ImageCreationOptions): Promise<Image>;
        getImage(name: string): undefined | Image;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "Images$ImageCollection"

    The type of the element.

    documentation: string
    excluded: boolean
    exportLevel: ExportLevel
    images: Image[]
    name: string

    Methods

    • Parameters

      • name: string

      Returns undefined | Image