23 lines
548 B
Plaintext
23 lines
548 B
Plaintext
using DTS.Common.Converters;
|
|
using System.ComponentModel;
|
|
|
|
namespace DTS.Common.Enums.Viewer.Reports
|
|
{
|
|
[TypeConverter(typeof(EnumDescriptionTypeConverter))]
|
|
public enum WindowType
|
|
{
|
|
[Description("Rectangle")]
|
|
Rectangle,
|
|
[Description("Hamming")]
|
|
Hamming,
|
|
[Description("Hanning")]
|
|
Hanning,
|
|
[Description("Blackman")]
|
|
Blackman,
|
|
[Description("Blackman-Harris")]
|
|
BlackmanHarris,
|
|
[Description("Flat Top")]
|
|
FlatTop
|
|
}
|
|
}
|