Property SLFrequencyFilter.TSLFrequencyFilter.Frequency
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: TSLFrequencyFilter
Contents |
Syntax
Delphi:
property Frequency : Real read FFrequency write SetFrequency;
C++ Builder:
__property double Frequency = { read=FFrequency, write=SetFrequency };
Summary
Cutoff frequency.
Description
Use this property to specify the filter's cutoff frequency.
Delphi example:
<c>SLLowPass1.Frequency := 5000;</c>
C++ Builder example:
<c>SLLowPass1->Frequency = 5000;</c>
Visual C++(MFC) example:
<c>SLLowPass1.Frequency = 5000;</c>
Visual C++/CLI example:
<c>lowPass1->Frequency = 5000;</c>
C# example:
<c>lowPass1.Frequency = 5000;</c>
VB example:
<c>LowPass1.Frequency = 5000</c>