[ 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 |
|---|---|
|
A standard, resizable window. |
|
A smaller utility window, typically used for tools or palettes. |
|
A popup window, usually without a title bar, borders, and other window decorations. |
Examples:
const win = new Window("Title", null, Window.Type.Utility);
