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

    Interface CustomIconCollection

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

    interface CustomIconCollection {
        $CreationOptions?: unknown;
        $ID: string;
        $Type: "CustomIcons$CustomIconCollection";
        $UnitID?: string;
        collectionClass: string;
        documentation: string;
        excluded: boolean;
        exportLevel: ExportLevel;
        fontData: any;
        icons: CustomIcon[];
        name: string;
        prefix: string;
        addCustomIcon(): Promise<CustomIcon>;
        getCustomIcon(name: string): undefined | CustomIcon;
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: unknown

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "CustomIcons$CustomIconCollection"

    The type of the element.

    $UnitID?: string
    collectionClass: string
    documentation: string
    excluded: boolean
    exportLevel: ExportLevel
    fontData: any
    icons: CustomIcon[]
    name: string
    prefix: string

    Methods

    • Parameters

      • name: string

      Returns undefined | CustomIcon