Property SLApplyWindow.TSLApplyWindow.WindowType
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: TSLApplyWindow
Contents |
Syntax
Delphi:
property WindowType : TSLExtendedWindowType read FWindowType write SetWindowType default xwtHanning;
C++ Builder:
__property TSLExtendedWindowType WindowType = { read=FWindowType, write=SetWindowType, default=xwtHanning };
Summary
Windowing function to be applied on the signal.
Description
Use this property to specify the windowing function to be
applied on the signal.
Delphi example:
SLApplyWindow1.WindowType := xwtHanning;
C++ Builder example:
SLApplyWindow1->WindowType = xwtHanning;
Visual C++(MFC) example:
SLApplyWindow1.WindowType = xwtHanning;
C# example:
applyWindow1.WindowType = Mitov.SignalLab.ExtendedWindowType.Hanning;