Description
The Editor.WindowFlags.Window
field is a member of the Editor.WindowFlags
enumeration. It represents a standard window type within the editor environment. This flag is used to specify that a window should behave as a typical application window, with standard window decorations and behavior.
Usage
Use the Editor.WindowFlags.Window
flag when you want to create or modify a window to have the standard window appearance and behavior. This includes having a title bar, border, and the ability to be resized and moved by the user.
Example
// Example of using Editor.WindowFlags.Window
// Create a new window with standard window flags
var window = new EditorWindow();
window.Flags = Editor.WindowFlags.Window;
// Set additional properties if needed
window.Title = "My Standard Window";
window.Show();