mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-11 05:34:34 +00:00
* Summaries rewritten * Added new parameters / Removed not supported parameters * Added some new methods like appFocus(options), appHasSingleLock, etc.
15 lines
475 B
C#
15 lines
475 B
C#
namespace ElectronNET.API.Entities
|
|
{
|
|
/// <summary>
|
|
/// Controls the behavior of <see cref="App.Focus(FocusOptions)"/>.
|
|
/// </summary>
|
|
public class FocusOptions
|
|
{
|
|
/// <summary>
|
|
/// Make the receiver the active app even if another app is currently active.
|
|
/// <para/>
|
|
/// You should seek to use the <see cref="Steal"/> option as sparingly as possible.
|
|
/// </summary>
|
|
public bool Steal { get; set; }
|
|
}
|
|
} |