mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-09-26 08:52:26 +00:00
19 lines
360 B
C#
19 lines
360 B
C#
|
|
namespace ElectronNET.API.Entities
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// The direction of a zoom change triggered by the user.
|
||
|
|
/// </summary>
|
||
|
|
public enum ZoomDirection
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// The user zoomed in.
|
||
|
|
/// </summary>
|
||
|
|
In,
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// The user zoomed out.
|
||
|
|
/// </summary>
|
||
|
|
Out
|
||
|
|
}
|
||
|
|
}
|