Description
The WindowStaysOnTopHint
field is a member of the Editor.WindowFlags
enumeration. It is used to specify that a window should remain on top of all other windows, ensuring it is always visible to the user. This flag is particularly useful for windows that need to provide persistent information or controls that should not be obscured by other windows.
Usage
To use the WindowStaysOnTopHint
flag, include it in the window creation or configuration process. This can be done by combining it with other WindowFlags
using a bitwise OR operation. Ensure that the window management system supports this feature, as behavior may vary across different platforms.
Example
// Example of using WindowStaysOnTopHint
var windowFlags = Editor.WindowFlags.Window | Editor.WindowFlags.WindowStaysOnTopHint;
// Assuming 'window' is an instance of a window class that accepts window flags
window.SetWindowFlags(windowFlags);