Property SLRealTodB.TSLRealTodB.Mode
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: TSLRealTodB
Contents |
Syntax
Delphi:
property Mode : TSLdBMode read FMode write SetMode default dbmPower;
C++ Builder:
__property TSLdBMode Mode = { read=FMode, write=SetMode, default=dbmPower };
Summary
The way the dB will be calculated.
Description
Use this property to specify the way the dB will be
calculated.
Delphi example:
SLRealTodB1.Mode := dbmPower;
C++ Builder example:
SLRealTodB1->Mode = dbmPower;
Visual C++(MFC) example:
SLRealTodB1.Mode = dbmPower;
Visual C++/CLI example:
realTodB1->Mode = Mitov::SignalLab::dBMode::Power;
C# example:
realTodB1.Mode = Mitov.SignalLab.dBMode.Power;
VB example:
RealTodB1.Mode = Mitov.SignalLab.dBMode.Power