Property ALCommonMeter.TALCommonMeter.CountChannels
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 CountChannels : Integer read GetCountChannels write SetCountChannels default 2;
C++ Builder:
__property int CountChannels = { read=GetCountChannels, write=SetCountChannels, default=2 };
Summary
Count desired channels to process.
Description
Use this property to specify the count of channels to be
processed by the Meter (Usually 1 or 2).
Delphi example:
ALVUMeter1.CountChannels := 2;
C++ Builder example:
ALVUMeter1->CountChannels = 2;
Visual C++(MFC/Win32) example:
ALVUMeter1.CountChannels = 2;
C# example:
vuMeter1.CountChannels = 2;