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

32 lines
355 B
C#

using System;
namespace SDRSharp.PanView
{
public class BandwidthEventArgs : EventArgs
{
public int Bandwidth
{
get;
set;
}
public int Offset
{
get;
set;
}
public bool Cancel
{
get;
set;
}
public BandwidthEventArgs(int bandwidth, int offset)
{
this.Bandwidth = bandwidth;
this.Offset = offset;
}
}
}