TrackIsVirtual Method
virtual track flag
Possible values:
source track index
channels set string
Indicates whether the track is virtual.
Syntax
Sub TrackIsVirtual( _
   ByRef _pbVirtual As Integer, _
   ByRef _pnSourceTrack As Integer, _
   ByRef _pbsChannelsSet As String _
) 
void TrackIsVirtual( 
   out int _pbVirtual,
   out int _pnSourceTrack,
   out string _pbsChannelsSet
)
procedure TrackIsVirtual( 
   Out  _pbVirtual: Integer;
   Out  _pnSourceTrack: Integer;
   Out  _pbsChannelsSet: String
); 
void TrackIsVirtual( 
   [PARAMFLAG::Out] int _pbVirtual,
   [PARAMFLAG::Out] int _pnSourceTrack,
   [PARAMFLAG::Out] BSTR* _pbsChannelsSet
) 

Parameters

_pbVirtual
virtual track flag
Possible values:
  • 1 means that track is virtual.
  • 0 means that track is not virtual.
_pnSourceTrack
source track index
_pbsChannelsSet
channels set string
Example
Dim nVirtual As Integer
Dim nSourceTrack As Integer
Dim strChannelsSet As String
track.TrackIsVirtual(nVirtual, nSourceTrack, strChannelsSet)
int nVirtual;
int nSourceTrack;
string strChannelsSet;
track.TrackIsVirtual(out nVirtual, out nSourceTrack, out strChannelsSet);
var
nVirtual, nSourceTrack: integer;
strChannelsSet: string;
begin
track.TrackIsVirtual(nVirtual, nSourceTrack, strChannelsSet);
end;
See Also

Reference

IMAudioTrack Interface
IMAudioTrack Members