[ static enum ] Type

Class: Window.

Description:

Represents the type of the window. Used when creating or modifying a window's appearance or behavior.

Type: number

Properties:

Name Description

Normal

A standard, resizable window.

Utility

A smaller utility window, typically used for tools or palettes.

Popup

A popup window, usually without a title bar, borders, and other window decorations.

Examples:

const win = new Window("Title", null, Window.Type.Utility);

Also See: