interface ApplicationRenderOptions {
    force: boolean;
    position: ApplicationPosition;
    window: ApplicationWindowRenderOptions;
    parts: string[];
    isFirstRender: boolean;
}

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.

A specific position at which to render the Application

Updates to the Application window frame

parts: string[]

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

isFirstRender: boolean

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