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

    Interface DocumentTemplate

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

    interface DocumentTemplate {
        $CreationOptions?: unknown;
        $ID: string;
        $Type: "DocumentTemplates$DocumentTemplate";
        $UnitID?: string;
        canvasWidth: number;
        documentation: string;
        excluded: boolean;
        exportLevel: ExportLevel;
        footer: Footer | null;
        header: DocumentTemplates.Header | null;
        marginBottomInInch: number;
        marginLeftInInch: number;
        marginRightInInch: number;
        marginTopInInch: number;
        name: string;
        pageHeight: string;
        pageWidth: string;
        parameters: DocumentTemplateParameter[];
        ppi: number;
        showHeaderAndFooterOnFirstPage: boolean;
        style: Style;
        toplevels: DocumentTemplates.Widget[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    $CreationOptions?: unknown

    Options to pass during the element creation

    $ID: string

    The unique id of the element.

    $Type: "DocumentTemplates$DocumentTemplate"

    The type of the element.

    $UnitID?: string
    canvasWidth: number
    documentation: string
    excluded: boolean
    exportLevel: ExportLevel
    footer: Footer | null
    header: DocumentTemplates.Header | null
    marginBottomInInch: number
    marginLeftInInch: number
    marginRightInInch: number
    marginTopInInch: number
    name: string
    pageHeight: string
    pageWidth: string
    ppi: number
    showHeaderAndFooterOnFirstPage: boolean
    style: Style