Property ALCommonMeter.TALCommonMeter.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: TALCommonMeter
Contents |
Syntax
Delphi:
property Mode : TALValueMode read FMode write SetMode default vmLinear;
C++ Builder:
__property TALValueMode Mode = { read=FMode, write=SetMode, default=vmLinear };
Summary
Value Mode - linear or decibels.
Description
Use this property to specify the Value Mode - linear or
decibels.
Delphi example:
ALVUMeter1.Mode := vmDecibel;
C++ Builder example:
ALVUMeter1->Mode = vmDecibel;
Visual C++(MFC/Win32) example:
ALVUMeter1.Mode = vmDecibel;
Visual C++/CLI example:
vuMeter1->Mode = Mitov::AudioLab::Decibel;
C# example:
vuMeter1.Mode = Mitov.AudioLab.Decibel;
VB example:
VUMeter1.Mode = Mitov.AudioLab.Decibel