using System.ComponentModel; using System.Runtime.Versioning; namespace ElectronNET.API.Entities { /// /// String values for the 'level' parameter of BrowserWindow.setAlwaysOnTop. /// /// Up-to-date with Electron API 39.2 [SupportedOSPlatform("macOS")] [SupportedOSPlatform("Windows")] public enum OnTopLevel { /// /// The normal /// normal, /// /// The floating /// floating, /// /// The torn off menu /// [Description("torn-off-menu")] tornOffMenu, /// /// The modal panel /// [Description("modal-panel")] modalPanel, /// /// The main menu /// [Description("main-menu")] mainMenu, /// /// The status /// status, /// /// The pop up menu /// [Description("pop-up-menu")] popUpMenu, /// /// The screen saver /// [Description("screen-saver")] screenSaver } }