SDRSharper/SDRSharper.PanView/SDRSharp.PanView/NotchEventArgs.cs
SDRSharpR c07e6e6034 SDRSharper (SDRSharp Remake) Full Source (VS2017)
SDRSharper (SDRSharp Remake) Full Source (VS2017)
2018-03-26 14:02:05 -07:00

46 lines
493 B
C#

using System;
namespace SDRSharp.PanView
{
public class NotchEventArgs : EventArgs
{
public int Notch
{
get;
set;
}
public int Offset
{
get;
set;
}
public int Width
{
get;
set;
}
public bool Active
{
get;
set;
}
public bool Cancel
{
get;
set;
}
public NotchEventArgs(int notch, int offset, int width, bool active)
{
this.Notch = notch;
this.Offset = offset;
this.Width = width;
this.Active = active;
}
}
}