Property SLSignalGen.TSLSignalGen.SignalType
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: TSLSignalGen
Contents |
Syntax
Delphi:
property SignalType : TSLSignalType read FSignalType write SetSignalType default stTone;
C++ Builder:
__property TSLSignalType SignalType = { read=FSignalType, write=SetSignalType, default=stTone };
Summary
The signal type - DC, Tone, Triangle, ChainSaw, Square or Jaehne.
Description
Use this property to specify the type of the generated signal
- DC, Tone, Triangle, ChainSaw, Square or Jaehne.
Delphi example:
SLSignalGen1.SignalType := stTone;
C++ Builder example:
SLSignalGen1->SignalType = stTone;
Visual C++(MFC) example:
SLSignalGen1.SignalType = stTone;
C# example:
signalGen1.SignalType = Mitov.SignalLab.SignalType.Tone;