Description
The WindowSystemMenuHint
field is a member of the Editor.WindowFlags
enumeration. It is used to specify that a window should have a system menu. This flag is typically used in conjunction with other window flags to define the appearance and behavior of a window in the editor environment.
Usage
To use the WindowSystemMenuHint
flag, combine it with other WindowFlags
using a bitwise OR operation. This allows you to customize the window's features, such as adding a system menu, title bar, or other window decorations.
Example
// Example of using WindowSystemMenuHint
Editor.WindowFlags windowFlags = Editor.WindowFlags.Window | Editor.WindowFlags.WindowSystemMenuHint;
// Apply the flags to a window
EditorWindow myWindow = new EditorWindow();
myWindow.SetWindowFlags(windowFlags);
myWindow.Show();