Property ALSpectrum.TALSpectrum.Order
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: TALSpectrum
Contents |
Syntax
Delphi:
property Order : Integer read GetOrder write SetOrder default 8;
C++ Builder:
__property int Order = { read=GetOrder, write=SetOrder, default=8 };
Summary
The order of the Fast Fourier Transformation.
Description
Use this property to specify the order of the Fast Fourier
Transformation.
Delphi example:
ALSpectrum1.Order := 8;
C++ Builder example:
ALSpectrum1->Order = 8;
Visual C++(MFC/Win32) example:
ALSpectrum1.Order = 8;
C# example:
spectrum1.Order = 8;