Property ALGraphicEqualizer.TALGraphicEqualizer.WindowType
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Class: TALGraphicEqualizer
Contents |
Syntax
Delphi:
property WindowType : TSLWindowType read FWindowType write SetWindowType default wtHamming;
C++ Builder:
__property TSLWindowType WindowType = { read=FWindowType, write=SetWindowType, default=wtHamming };
Summary
Windowing function to be used when calculating the filters of the Equalizer.
Description
Use this property to specify the windowing function to be
applied on top of the generated taps(Coefficients) of the
filters of the equalizer.
Delphi example:
ALGraphicEqualizer1.WindowType := wtHanning;
C++ Builder example:
ALGraphicEqualizer1->WindowType = wtHanning;
Visual C++(MFC/Win32) example:
ALGraphicEqualizer1.WindowType = wtHanning;
C# example:
graphicEqualizer1.WindowType = Mitov.SignalLab.WindowType.Hanning;