gridstack - v13.3.0
    Preparing search index...

    Interface PrintOptions

    Print options for a widget. See print_README.md for more details.

    interface PrintOptions {
        breakInside?: boolean;
        hide?: boolean;
        mode?: string;
        orientation?: "portrait" | "landscape";
        pageBreak?: boolean;
    }
    Index

    Properties

    breakInside?: boolean

    allow this widget (ex: a tall table/datagrid, or a section with a nested sub-grid) to fragment across multiple printed pages instead of being kept together as one unbreakable block - which otherwise pushes the whole widget to the next page (leaving a blank gap) whenever it doesn't fit in the space remaining on the current page (default?: undefined = kept on one page). See print_README.md

    hide?: boolean

    prevent this widget from printing (default?: undefined)

    mode?: string

    application specific print options for a given widget

    orientation?: "portrait" | "landscape"

    set the orientation of the printed page (default?: 'portrait'). See print_README.md

    pageBreak?: boolean

    add a page break before this widget (default?: undefined). See print_README.md