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

    Interface Snippet

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

    interface Snippet {
        $CreationOptions?: SnippetCreationOptions;
        $ID: string;
        $Type: "Pages$Snippet";
        $UnitID?: string;
        canvasHeight: number;
        canvasWidth: number;
        documentation: string;
        excluded: boolean;
        exportLevel: ExportLevel;
        name: string;
        parameters: SnippetParameter[];
        type: SnippetType;
        variables: LocalVariable[];
        widgets: Pages.Widget[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: SnippetCreationOptions

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "Pages$Snippet"

    The type of the element.

    $UnitID?: string
    canvasHeight: number
    canvasWidth: number
    documentation: string
    excluded: boolean
    exportLevel: ExportLevel
    name: string
    parameters: SnippetParameter[]
    variables: LocalVariable[]
    widgets: Pages.Widget[]