Property ALGraphicEqualizer.TALGraphicEqualizer.NumTaps
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 NumTaps : Integer read FNumTaps write SetNumTaps default 41;
C++ Builder:
__property int NumTaps = { read=FNumTaps, write=SetNumTaps, default=41 };
Summary
Number of Taps(Coefficients).
Description
Use this property to specify the desired number of
taps(Coefficients) for the equalizer's filter.
Delphi example:
<c>ALGraphicEqualizer1.NumTaps := 41;</c>
C++ Builder example:
<c>ALGraphicEqualizer1->NumTaps = 41;</c>
Visual C++(MFC/Win32) example:
<c>ALGraphicEqualizer1.NumTaps = 41;</c>
Visual C++/CLI example:
<c>graphicEqualizer1->NumTaps = 41;</c>
C# example:
<c>graphicEqualizer1.NumTaps = 41;</c>
VB example:
<c>GraphicEqualizer1.NumTaps = 41</c>