Enum SLRealTodB.TSLdBMode
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.
Package: SignalLabPkg
Unit: SLRealTodB
Contents |
Syntax
Delphi:
type TSLdBMode = (dbmPower, dbmAmplitude);
C++ Builder:
enum TSLdBMode {dbmPower, dbmAmplitude};
Visual C++ (MFC):
enum CTSLdBMode {dbmPower, dbmAmplitude};
Summary
dB calculation modes enumeration.
Description
Defines enumerated values for the dB calculation modes.
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
Values
dbmPower | Power Db mode. |
dbmAmplitude | Amplitude Db mode. |