Property SLHilbert.TSLHilbert.BufferSize
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: TSLHilbert
Contents |
Syntax
Delphi:
property BufferSize : Integer read FBufferSize write SetBufferSize default 1024;
C++ Builder:
__property int BufferSize = { read=FBufferSize, write=SetBufferSize, default=1024 };
Summary
Specifies the size of the buffer for the Hilbert transformation.
Description
Use this property to specify the size of the buffer for the
Hilbert transformation.
Delphi example:
SLHilbert1.BufferSize := 2048;
C++ Builder example:
SLHilbert1->BufferSize = 2048;
Visual C++(MFC) example:
SLHilbert1.BufferSize = 2048;
Visual C++/CLI example:
hilbert1->BufferSize = 2048;
C# example:
hilbert1.BufferSize = 2048;
VB example:
Hilbert1.BufferSize = 2048