SDRSharper/SDRSharper.PanView/SDRSharp.PanView/NotchEventArgs.cs

46 lines
493 B
C#
Raw Normal View History

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;
}
}
}