[ 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 with borders, title bar and a taskbar button. |
|
A window with a task bar button, but without border and title bar. |
|
A smaller utility window without a taskbar button, typically used for tools or palettes. |
|
A popup window, usually without a title bar, borders and taskbar button. |
Examples:
let window = ne Window("New window", parent_window, Window.Type.Utility);
