Property ALVorbisDecompressor.TALVorbisDecompressor.ChannelCount
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: TALVorbisDecompressor
Contents |
Syntax
Delphi:
property ChannelCount : Integer read GetChannelCount;
C++ Builder:
__property int ChannelCount = { read=GetChannelCount };
Summary
Count audio channels.
Description
Use this property to get the count of audio channels.
Delphi example:
var AValue : Integer; AValue := ALVorbisDecompressor1.ChannelCount;
C++ Builder example:
int AValue = ALVorbisDecompressor1->ChannelCount;
Visual C++(MFC/Win32) example:
int AValue = ALVorbisDecompressor1.ChannelCount;
Visual C++/CLI example:
int value = vorbisDecompressor1->ChannelCount;
C# example:
int value = vorbisDecompressor1.ChannelCount;
VB example:
Dim AValue As Integer = VorbisDecompressor1.ChannelCount;