Description
The Editor.WindowFlags.Tool
field is a member of the Editor.WindowFlags
enumeration. It is used to specify that a window is a tool window. Tool windows are typically used for floating toolbars or palettes that are not part of the main application window. They often have a smaller title bar and may not appear in the taskbar or window switcher.
Usage
Use the Editor.WindowFlags.Tool
flag when creating or configuring a window that should behave as a tool window. This flag can be combined with other WindowFlags
using a bitwise OR operation to achieve the desired window behavior.
Example
// Example of using Editor.WindowFlags.Tool
var window = new Window();
window.Flags = Editor.WindowFlags.Tool | Editor.WindowFlags.FramelessWindowHint;
window.Show();