Property ALCommonSplitter.TALCommonSplitter.CountChannels
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: TALCommonSplitter
Contents |
Syntax
Delphi:
property CountChannels : Integer read GetCountChannels write SetCountChannelsProp default 2;
C++ Builder:
__property int CountChannels = { read=GetCountChannels, write=SetCountChannelsProp, default=2 };
Summary
Specifies the expected number of channels to be split (count output pins).
Description
Use this property to specify the expected number of channels
to be split (count output pins). The usual values are 1 for
mono, and 2 for stereo signal.
Delphi example:
ALChannelSplitter1.CountChannels := 2;
C++ Builder example:
ALChannelSplitter1->CountChannels = 2;
Visual C++(MFC) example:
ALChannelSplitter1.CountChannels = 2;
Visual C++/CLI example:
channelSplitter1->CountChannels = 2;
C# example:
channelSplitter1.CountChannels = 2;
VB example:
ChannelSplitter1.CountChannels = 2