Foundry Virtual Tabletop - API Documentation - Version 14
    Preparing search index...

    Interface ApplicationRenderOptions

    interface ApplicationRenderOptions {
        force?: boolean;
        isFirstRender?: boolean;
        parts?: string[];
        position?: ApplicationPosition;
        tab?: string | Record<string, string>;
        window?: ApplicationWindowRenderOptions;
    }
    Index

    Properties

    force?: boolean

    Force application rendering. If true, an application which does not yet exist in the DOM is added. If false, only applications which already exist are rendered.

    isFirstRender?: boolean

    Is this render the first one for the application? This property is populated automatically.

    parts?: string[]

    Some Application classes, for example the HandlebarsApplication, support re-rendering a subset of application parts instead of the full Application HTML.

    A specific position at which to render the Application

    tab?: string | Record<string, string>

    A tab to activate. Either the tab's ID for applications with only one tab group, or an object of tab groups to tab IDs. Re-rendering an Application with this option will not trigger changeTab.

    Updates to the Application window frame