Property SLPowerSpectrum.TSLPowerSpectrum.ProcessHalf
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: TSLPowerSpectrum
Contents |
Syntax
Delphi:
property ProcessHalf : Boolean read FProcessHalf write SetProcessHalf;
C++ Builder:
__property bool ProcessHalf = { read=FProcessHalf, write=SetProcessHalf };
Summary
Process only half buffer.
Description
When this property is set to true, only half of the input
buffer will be processed. The property is useful when
displaying FFT spectrum results.
Delphi example:
SLPowerSpectrum1.ProcessHalf := True;
C++ Builder example:
SLPowerSpectrum1->ProcessHalf = true;
Visual C++(MFC) example:
SLPowerSpectrum1.ProcessHalf = true;
C# example:
powerSpectrum1.ProcessHalf = true;